Skip to content

Check for broken links #1156

Check for broken links

Check for broken links #1156

Workflow file for this run

name: Check for broken links
on:
push:
schedule:
- cron: '0 5 * * SUN'
jobs:
broken-link-check:
runs-on: ubuntu-22.04
name: Check for broken links in README.md
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: |
npm install -g [email protected]
find . -type f -name '*.md' | xargs -L1 npx markdown-link-check -c .broken-link-config.json --quiet