chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 #22
Workflow file for this run
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: Action CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| actions: read | |
| pull-requests: read | |
| jobs: | |
| validate-and-audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Validate action.yml exists | |
| run: test -f action.yml && echo "action.yml present" | |
| - name: Validate dist is built | |
| run: test -f dist/index.js && echo "dist/index.js present" | |
| - name: Build (compile from source) | |
| run: npm run build | |
| - name: Security audit (production deps) | |
| run: npm audit --omit=dev --audit-level=high | |
| - name: Generate Evidence Pack | |
| if: always() | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| run: python3 scripts/generate_evidence_pack.py --output EVIDENCE_PACK.md --strict | |
| - name: Upload Evidence Pack | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: evidence-pack-${{ github.run_id }} | |
| path: EVIDENCE_PACK.md | |
| if-no-files-found: error |