Skip to content

fix docs link checker #190

fix docs link checker

fix docs link checker #190

Workflow file for this run

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 }}