Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/check-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,15 @@ jobs:
- uses: actions/checkout@v4

- name: Link Checker
uses: lycheeverse/lychee-action@v2.5.0
uses: lycheeverse/lychee-action@v2.9.0
with:
# Ignore the README.md file as some social sharing links are not valid
args: --verbose --no-progress --exclude-path 'README.md' './**/*.md' './**/*.html' './**/*.rst'
# Built HTML's root-relative links (/favicon.ico, /src/styles.css) resolve
# against each app's served root, not the checkout - lychee >= the 2.9.0
# action errors on them without a single --root-dir, and no one root serves
# every app. Link-check the sources; build artifacts are verified by the
# build/deploy jobs that actually serve them.
args: --verbose --no-progress --exclude-path 'README.md' './**/*.md' './**/*.rst'
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading