mirror of
https://github.com/codecrafters-io/build-your-own-x
synced 2026-07-03 01:09:25 +00:00
Check links action
This commit is contained in:
parent
50fb1214f6
commit
2e3c200b96
2 changed files with 19 additions and 0 deletions
7
.github/mlc_config.json
vendored
Normal file
7
.github/mlc_config.json
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"timeout": "20s",
|
||||
"retryOn429": true,
|
||||
"retryCount": 5,
|
||||
"fallbackRetryDelay": "30s",
|
||||
"aliveStatusCodes": [200, 206]
|
||||
}
|
||||
12
.github/workflows/build.yml
vendored
Normal file
12
.github/workflows/build.yml
vendored
Normal 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'
|
||||
Loading…
Reference in a new issue