Merge pull request #1118 from JoyAdah/fix/joyadah-stellarwave-batch #248
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: Tech Debt Policy | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| todo-check: | |
| name: Untracked TODO/FIXME check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22" | |
| # The scanner has no dependencies — it uses only Node built-ins — | |
| # so no install step is needed. | |
| - name: Enforce TODO/FIXME issue references in critical paths | |
| run: node scripts/check-todos.mjs |