1
0
Fork 0
mirror of synced 2025-09-23 04:08:33 +00:00

add markdown-link-check action to github workflow

This commit is contained in:
dark64 2021-05-26 19:24:08 +02:00
parent e264aaa808
commit 4e8ec53b95

17
.github/workflows/docs-check.yml vendored Normal file
View 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'