Skip to content

Commit 654f7de

Browse files
authored
chore: accept 429s (#902)
* chore: accept 429s when checking links * fix: access default status codes and 429s
1 parent 02a691d commit 654f7de

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,22 @@ jobs:
7474
- uses: actions/checkout@v4
7575
- uses: lycheeverse/lychee-action@a8c4c7cb88f0c7386610c35eb25108e448569cb0 # v2.7.0
7676
with:
77-
args: --root-dir "$(pwd)" --verbose --no-progress --exclude-loopback --exclude-path .kurtosis-test/ --exclude-path docs/node_modules/ --exclude file:// --exclude https://github.com/0xPolygon/kurtosis-cdk --exclude https://www.blockscout.com/ --exclude https://github.com/0xPolygon/arpeggio --exclude http://anvil-001:8545 --exclude ws://anvil-001:8545 --exclude https://unix.stackexchange.com/questions/65475/ephemeral-port-what-is-it-and-what-does-it-do './**/*.md'
77+
args: >
78+
--root-dir "$(pwd)"
79+
--verbose
80+
--no-progress
81+
--exclude-loopback
82+
--accept '100..=103,200..=299,429'
83+
--exclude-path .kurtosis-test/
84+
--exclude-path docs/node_modules/
85+
--exclude file://
86+
--exclude https://github.com/0xPolygon/kurtosis-cdk
87+
--exclude https://github.com/0xPolygon/arpeggio
88+
--exclude https://www.blockscout.com/
89+
--exclude https://unix.stackexchange.com/questions/65475/ephemeral-port-what-is-it-and-what-does-it-do
90+
--exclude http://anvil-001:8545
91+
--exclude ws://anvil-001:8545
92+
'./**/*.md'
7893
fail: true
7994

8095
unit:

0 commit comments

Comments
 (0)