Improve CI build with better link checker #1583
Workflow file for this run
This file contains 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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: '0 0 * * *' # every day at 00:00 | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Check all links | |
run: bunx markdown-link-check --config=.github/workflows/config.json README.md | |
- name: "Check for exactly 200 links" | |
run: | | |
grep "\- \[" README.md | grep -Eo "https?://[^][ ]+" | sed 's/)//' | sort > links-only.txt | |
if [ $(uniq links-only.txt | wc -l) != 200 ]; then | |
echo "ERROR: List is not exactly 200 entries" | |
echo "DUPLICATES:" | |
uniq -d links-only.txt | |
exit 1 | |
fi |