Skip to content

Commit 294767e

Browse files
authored
chore(ci): add an automatic check to verify markdown links.
As per #6793, there are multiple broken links in our docs. This action will check if all markdown links are valid. cc: @ammario @bpmct
1 parent 6c0f37c commit 294767e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/contrib.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,17 @@ jobs:
5858
with:
5959
requireScope: false
6060

61+
markdown-link-check:
62+
runs-on: ubuntu-latest
63+
steps:
64+
- uses: actions/checkout@master
65+
- uses: gaurav-nelson/github-action-markdown-link-check@v1
66+
with:
67+
use-quiet-mode: 'yes'
68+
use-verbose-mode: 'yes'
69+
config-file: 'mlc_config.json'
70+
folder-path: 'docs'
71+
6172
release-labels:
6273
runs-on: ubuntu-latest
6374
# Depend on lint so that title is Conventional Commits-compatible.

0 commit comments

Comments
 (0)