feat: add AI coding tool detection with per-tool metrics and VCP display #45
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 checks | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| pull_request: | |
| branches: | |
| - develop | |
| - main | |
| jobs: | |
| audit-and-secret-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.13.0 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: NPM audit (moderate) | |
| run: npm audit --audit-level=moderate | |
| - name: Trufflehog git history scan | |
| uses: trufflesecurity/trufflehog@main | |
| with: | |
| extra_args: --only-verified |