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
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,12 @@ jobs:
# abort the audit before it can report real vulnerabilities.
run: npm audit --omit=dev --audit-level=high --package-lock-only

- name: Audit dev dependencies (critical only)
# Catches malware/critical advisories in devDependencies (e.g. GHSA-rphw-c8qj-jv84).
# Scoped to critical only — high/moderate in devDeps are acceptable noise since
# they never reach production. --package-lock-only avoids installing packages.
run: npm audit --audit-level=critical --package-lock-only

verify-imports:
runs-on: ubuntu-latest
name: Verify dynamic imports
Expand Down
Loading