Adding automated link checking to documentation (#100)
This commit is contained in:
parent
269d17c410
commit
417a6438da
|
|
@ -0,0 +1,17 @@
|
|||
name: Check links on all markdown documents
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
linkinator:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: JustinBeckwith/linkinator-action@v1
|
||||
with:
|
||||
paths: "**/*.md"
|
||||
markdown: true
|
||||
retry: true
|
||||
Loading…
Reference in New Issue