From 83acedbc23f10fbe23f8eb90f82f70ed82097c8c Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Fri, 3 Apr 2026 13:10:40 +0200 Subject: [PATCH] Add link checker workflow to validate markdown links --- .gitea/workflows/link-checker.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/link-checker.yml diff --git a/.gitea/workflows/link-checker.yml b/.gitea/workflows/link-checker.yml new file mode 100644 index 0000000..2a81886 --- /dev/null +++ b/.gitea/workflows/link-checker.yml @@ -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 }} -- 2.39.5