Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions .github/workflows/ci-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,13 @@ jobs:
run: |
npm ci
npm run ci-check

# Blocking: fail the build on a high+ vulnerability that reaches the
# shipped bundle (runtime deps only).
- name: Audit runtime dependencies (blocking)
run: npm run audit:ci

# Non-blocking: surface dev/build-toolchain advisories for visibility
# without failing CI (these never reach the extension bundle).
- name: Audit full dependency tree (non-blocking)
run: npm audit || true
Loading
Loading