feat: single installer CLI, app.info metrics, e2e test suite, and skill refinements #27
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: Dependency Review | |
| on: | |
| pull_request: | |
| branches: ["**"] | |
| concurrency: | |
| group: dependency-review-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| dependency-review: | |
| name: Block high/critical CVEs in new deps | |
| runs-on: ubuntu-latest | |
| # Requires the repo to have the dependency graph enabled (Settings → Security) | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/dependency-review-action@v4 | |
| with: | |
| # Fail only on high/critical — consistent with audit threshold | |
| fail-on-severity: high | |
| # Post a summary comment on the PR listing any flagged deps | |
| comment-summary-in-pr: always |