Adding automated link checking to documentation (#100)

This commit is contained in:
Aaron Schlesinger 2021-03-15 23:17:14 -07:00 committed by GitHub
parent 269d17c410
commit 417a6438da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

17
.github/workflows/linkinator.yaml vendored Normal file
View File

@ -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