-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlychee.toml
More file actions
18 lines (17 loc) · 959 Bytes
/
lychee.toml
File metadata and controls
18 lines (17 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Exclude loopback / localhost addresses — the web demo README documents
# `http://localhost:8000/` as a local-dev URL that is never reachable from CI.
exclude_loopback = true
# npmjs.com responds 403 to non-browser HEAD/GET from GitHub Actions runners
# even though the package page exists. Well-known lychee false positive.
#
# GitHub `compare/` URLs in CHANGELOG.md are inherently ephemeral around a
# release commit: `[Unreleased]: …/compare/vX.Y.Z…HEAD` is always ahead of
# the highest tag, and the `[X.Y.Z]: …/compare/vA.B.C…vX.Y.Z` link added
# at version-bump time can't resolve until the new tag is pushed (which
# the deployment flow does only *after* CI passes). Once tagged, these
# resolve in real browsers — but lychee runs in the CI gap and fails. The
# fixed-tag links (`releases/tag/vX.Y.Z`) are still checked normally.
exclude = [
"^https://www\\.npmjs\\.com/",
"^https://github\\.com/sakobu/izzos-lambert/compare/",
]