diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml new file mode 100644 index 0000000..13120e8 --- /dev/null +++ b/.github/workflows/check-links.yml @@ -0,0 +1,15 @@ +name: Check Markdown links + +on: + pull_request: + paths: + - '**/*.md' + +jobs: + check-links: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-quiet-mode: 'yes'