Skip to content

Commit 6121494

Browse files
committed
Reintroduce markdown-lint-check-config
1 parent fed8349 commit 6121494

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

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

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

markdown-lint-check-config.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
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
1213
}

0 commit comments

Comments
 (0)