chore: sync package-lock.json — add missing vue workspace entries #64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Security | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| dependency-audit: | |
| name: Dependency vulnerability scan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - run: npm ci | |
| # Fails the check (blocking the PR / release) on any high or critical | |
| # severity advisory in a *production* dependency — dev-only tooling | |
| # (test runner, bundler, docs generator) never ships to SDK consumers, | |
| # so it's excluded to keep this gate signal-only (issue #461). | |
| - name: Audit dependencies | |
| run: npm run check:audit |