We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1597ec commit 1d39ee1Copy full SHA for 1d39ee1
.github/workflows/lint-docs.yaml
@@ -0,0 +1,21 @@
1
+name: Check Markdown links
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - '**.md'
9
+ pull_request:
10
11
12
13
+jobs:
14
+ markdown-link-check:
15
+ name: Broken Links
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@master
19
+ - uses: gaurav-nelson/github-action-markdown-link-check@v1
20
+ with:
21
+ config-file: .markdownlinkcheck.json
.markdownlinkcheck.json
@@ -0,0 +1,12 @@
+{
+ "ignorePatterns": [
+ {
+ "pattern": "^http://localhost"
+ }
+],
+ "timeout": "5s",
+ "retryOn429": true,
+ "retryCount": 5,
+ "fallbackRetryDelay": "30s",
+ "aliveStatusCodes": [200, 206]
+}
0 commit comments