diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/quality.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index feb123c3..3ae73b37 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -27,10 +27,16 @@ jobs: - name: Install dependencies run: pnpm install --frozen-lockfile + - name: Generate GraphQL artifacts + run: pnpm exec sveltekit-graphql generate + - name: Check formatting run: pnpm run format:check - name: Run type checks + env: + SUPABASE_URL: "http://localhost:54321" + SUPABASE_ANON_KEY: "dummy" run: pnpm run check - name: Run linter |