Mobile/UX overhaul: collapsible cards, topic filter, progress & resume, a11y #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
| name: Link check | |
| # Fails a PR (or push to main) if any internal link in docs/ points at a file | |
| # that doesn't exist — the failure mode that folder moves and slug renames cause. | |
| on: | |
| push: | |
| branches: [main] | |
| paths: ['docs/**', 'scripts/check-broken-links.js', '.github/workflows/link-check.yml'] | |
| pull_request: | |
| paths: ['docs/**', 'scripts/check-broken-links.js', '.github/workflows/link-check.yml'] | |
| jobs: | |
| links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| # Zero dependencies — the checker uses only Node built-ins, so no install step. | |
| - run: node scripts/check-broken-links.js |