Skip to content

chore: improve styling patterns #48

chore: improve styling patterns

chore: improve styling patterns #48

Workflow file for this run

# Checks and builds the project. For more info:
# https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: check
on:
push:
branches: [main]
pull_request:
branches: ['**']
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:18
env:
POSTGRES_DB: fuz_test
POSTGRES_USER: fuz_test
POSTGRES_PASSWORD: fuz_test
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
matrix:
node-version: ['22.15']
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npx @fuzdev/gro check --workspace --build
env:
TEST_DATABASE_URL: postgres://fuz_test:fuz_test@localhost:5432/fuz_test