Add link checker workflow to validate markdown links
All checks were successful
Check Links / lycheee (push) Successful in 6s

This commit is contained in:
Space-Banane
2026-04-03 13:10:40 +02:00
parent 9646bd7d24
commit 83acedbc23

View File

@@ -0,0 +1,20 @@
name: Check Links
on:
push:
jobs:
lycheee:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Link Checker
uses: lycheeverse/lychee-action@v2
with:
args: --verbose --no-progress './**/*.md'
# Fail the build if broken links are found
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}