Skip to content

Commit 0d74772

Browse files
committed
Reintroduce markdown-lint-check-config
1 parent 8dd5905 commit 0d74772

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/check-links-in-documentation.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,4 @@ jobs:
3434
3535
- name: Check links in top level documentation Markdown files
3636
if: ${{ ! env.skip_link_check}}
37-
run: npx --yes markdown-link-check@3.14.2 --verbose --alive=200,202,206 --retry README.md
38-
# Temporarily, everything is done using command line options rather than with the config file, which doesn't seem to work.
39-
# Maybe related to https://github.com/tcort/markdown-link-check/issues/379 ?
37+
run: npx --yes markdown-link-check@3.14.2 --config markdown-lint-check-config.json README.md

markdown-lint-check-config.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
"timeout": "30s",
88
"retryOn429": true,
99
"retryCount": 3,
10-
"fallbackRetryDelay": "60s",
11-
"aliveStatusCodes": [200, 202, 206]
10+
"fallbackRetryDelay": "60s",
11+
"aliveStatusCodes": [200, 202, 206],
12+
"verbose": true,
13+
"retry": true
1214
}

0 commit comments

Comments
 (0)