audit: review 10 patterns #7
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
| # TEMPORARY workflow for the Q2 2026 content audit (PR #130). | |
| # Delete this file and scripts/audit-sync.js before merging feat/audit into master. | |
| name: Audit Tracker Check | |
| on: | |
| push: | |
| branches: [feat/audit] | |
| workflow_dispatch: | |
| jobs: | |
| audit-check: | |
| runs-on: ubuntu-latest | |
| name: QA-AUDIT.md sync check | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Fetch master | |
| run: git fetch origin master | |
| - name: Setup Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: '20' | |
| - name: Check QA-AUDIT.md is in sync with origin/master | |
| run: node scripts/audit-sync.js |