From b49e97fe9dadd763c3336a9219f207a1943db305 Mon Sep 17 00:00:00 2001 From: jdidion Date: Sun, 22 Mar 2026 07:49:20 -0700 Subject: [PATCH] Add link-checking CI workflow using lychee Co-Authored-By: Claude Opus 4.6 --- .github/workflows/links.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/links.yml diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml new file mode 100644 index 0000000..b9dba9f --- /dev/null +++ b/.github/workflows/links.yml @@ -0,0 +1,17 @@ +name: Check Links + +on: + push: + branches: [main, master] + schedule: + - cron: '0 0 * * 0' + workflow_dispatch: + +jobs: + linkChecker: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: lycheeverse/lychee-action@v2 + with: + fail: true