Check links action

This commit is contained in:
Corban Raun 2021-02-03 17:38:44 -07:00
parent 50fb1214f6
commit 2e3c200b96
2 changed files with 19 additions and 0 deletions

7
.github/mlc_config.json vendored Normal file
View file

@ -0,0 +1,7 @@
{
"timeout": "20s",
"retryOn429": true,
"retryCount": 5,
"fallbackRetryDelay": "30s",
"aliveStatusCodes": [200, 206]
}

12
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,12 @@
name: Check Markdown links
on: [ push, pull_request ]
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
config-file: '.github/mlc_config.json'