fix docs link checker #173
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: Docs checks | |
| on: | |
| pull_request: | |
| paths: | |
| - "docs/**" | |
| - ".github/actions/validate-docs-links/**" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| validate-docs-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-node | |
| with: | |
| node-version: 20 | |
| - name: Run link checker | |
| run: cd docs && pnpm run check-links | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |