Skip to content

Commit 0765712

Browse files
committed
Add support to check for dead links in documentation.
1 parent 05f00f1 commit 0765712

File tree

4 files changed

+836
-0
lines changed

4 files changed

+836
-0
lines changed

.github/workflows/lint_docs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,6 @@ jobs:
2929

3030
- name: Lint Project Documentation
3131
run: npm run lint-docs
32+
33+
- name: Lint Documentation Links
34+
run: npm run link-check

.vscode/tasks.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,14 @@
7979
"args": ["run", "lint-docs"],
8080
"problemMatcher": "$markdownlint"
8181
},
82+
{
83+
"label": "npm:link-check",
84+
"detail": "Link Check Project Documentation",
85+
"type": "shell",
86+
"command": "npm",
87+
"group": "build",
88+
"args": ["run", "link-check"]
89+
},
8290
{
8391
"label": "npm:spellcheck-docs",
8492
"detail": "Spellcheck Project Documentation",

0 commit comments

Comments
 (0)