docs(CH-005): add plan P-003 - Tank Royale Rumble #31
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: Lint Docs | |
| on: | |
| push: | |
| branches: [main] | |
| paths: ['**/*.md'] | |
| pull_request: | |
| paths: ['**/*.md'] | |
| jobs: | |
| check-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install markdown-link-check | |
| run: npm install -g markdown-link-check | |
| - name: Check local links in markdown files | |
| run: | | |
| find . -name "*.md" \ | |
| -not -path "*/.agents/*" \ | |
| -not -path "*/web/docs/*" \ | |
| -not -path "*/node_modules/*" \ | |
| -not -path "*/.gradle/*" \ | |
| -not -path "*/.venv/*" \ | |
| -not -path "*/build/archive/*" \ | |
| | xargs -P4 -n1 markdown-link-check --config .markdown-link-check.json |