Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ jobs:
verify-frontend:
runs-on: ubuntu-latest
timeout-minutes: 20
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4

Expand All @@ -40,13 +37,14 @@ jobs:
cache-dependency-path: frontend/package-lock.json

- name: Install
working-directory: frontend
run: npm ci --legacy-peer-deps

- name: Lint
run: npm run lint

- name: Typecheck
run: npx tsc --noEmit
# SSOT: one definition of "verified" lives in the ROOT package.json
# `verify` (frontend lint + typecheck), run identically here and locally.
# Runs from repo root — the script cds into frontend itself.
- name: Verify
run: npm run verify

# Build is DEFERRED, not skipped silently. `prisma generate` currently
# fails in CI on a missing engine (query_engine_bg.postgresql.wasm) — a
Expand Down
Loading