fleet/.github/workflows/docs.yml
Zach Wasserman bc3d7fbe2b
Always check doc links in CI (#2178)
- Check all links on every PR to better avoid broken links.
2021-09-22 10:29:43 -04:00

14 lines
388 B
YAML

name: Check for bad links in documentation
on: [ pull_request]
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
config-file: .github/workflows/markdown-link-check-config.json
base-branch: ${{ github.base_ref }}