Fix sporadic link check failure (#5515)
This commit is contained in:
parent
6656791147
commit
d80b6f54fd
|
@ -56,7 +56,15 @@ jobs:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Check markdown links
|
- name: Check markdown links
|
||||||
run: |
|
# using retry because of sporadic external site failures
|
||||||
|
uses: nick-invision/retry@v2.6.0
|
||||||
|
with:
|
||||||
|
# timing out has not been a problem
|
||||||
|
timeout_minutes: 15
|
||||||
|
# give external site some time to hopefully recover
|
||||||
|
retry_wait_seconds: 120
|
||||||
|
max_attempts: 5
|
||||||
|
command: |
|
||||||
npm install -g markdown-link-check
|
npm install -g markdown-link-check
|
||||||
find . -type f \
|
find . -type f \
|
||||||
-name '*.md' \
|
-name '*.md' \
|
||||||
|
|
Loading…
Reference in New Issue