add markdown-link-check action to github workflow
This commit is contained in:
parent
e264aaa808
commit
4e8ec53b95
1 changed files with 17 additions and 0 deletions
17
.github/workflows/docs-check.yml
vendored
Normal file
17
.github/workflows/docs-check.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: Check markdown links
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- '**.md'
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- '**.md'
|
||||||
|
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: 'no'
|
||||||
|
use-verbose-mode: 'yes'
|
Loading…
Reference in a new issue