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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,12 @@ jobs:
- name: Install
run: npm ci
- name: Dependency Audit
run: npm audit --audit-level=high
# Scope the High+ gate to production dependencies shipped to the Worker
# runtime. All current High/Moderate advisories are in dev-only tooling
# (esbuild, vite, ws via wrangler / drizzle-kit / vitest) with no
# non-breaking fix; the runtime dependency tree is clean. Mirrors the
# audit_omit_dev option already exposed by reusable-governance-gates.yml.
run: npm audit --audit-level=high --omit=dev
- name: Typecheck
run: npx tsc -p tsconfig.json --noEmit
- name: Test
Expand Down
Loading