From bc5d6d5ae89fc27311c52cfd3aa5bf5dd38a0e96 Mon Sep 17 00:00:00 2001 From: Alejandro Lazaro Date: Thu, 20 Nov 2025 19:02:18 +0100 Subject: [PATCH] Add `--include-fragments` to `lychee` --- .github/workflows/lint.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 803de16..8e538fc 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,8 @@ jobs: with: # Exclude twitter.com (https://github.com/lycheeverse/lychee/issues/989) # Exclude udemy.com (Failed: Network error: Forbidden) - args: README.md --verbose --no-progress --exclude twitter.com --exclude udemy.com + # Add check for url.com/index#fragments + args: README.md --verbose --no-progress --exclude twitter.com --exclude udemy.com --include-fragments fail: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}