aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/quality.yml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-03-01 16:57:59 -0800
committerFuwn <[email protected]>2026-03-01 17:35:27 -0800
commit5f7c708bd2c965ee1fafd0e09df9c8cf262bc88d (patch)
treea5ae24f811be05fe3e07f64eb2edf2533d68322d /.github/workflows/quality.yml
parentchore(trigger): migrate project setup from v3 to v4 (diff)
downloaddue.moe-5f7c708bd2c965ee1fafd0e09df9c8cf262bc88d.tar.xz
due.moe-5f7c708bd2c965ee1fafd0e09df9c8cf262bc88d.zip
ci: make quality workflow generate artifacts before typecheck
Diffstat (limited to '.github/workflows/quality.yml')
-rw-r--r--.github/workflows/quality.yml6
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