Skip to content

Check for broken links #2063

Check for broken links

Check for broken links #2063

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:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Check for broken links
run: |
npm install -g markdown-link-check@3.10.3
find README.md -type f | xargs -L1 npx markdown-link-check -c .broken-link-config.json --quiet