Check links #54
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check links | |
| on: | |
| workflow_dispatch: | |
| # Currently only set to manual, as we get many false positives, | |
| # in particular local links | |
| jobs: | |
| check_links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v2 | |
| - name: Check links in markdown files (markdown-link-check) | |
| uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
| with: | |
| use-quiet-mode: 'yes' | |
| use-verbose-mode: 'no' | |
| config-file: '.markdown-link-check-config.json' | |
| folder-path: 'pages/' | |
| # We also need to check 'collections/_testimonials/', but quoted links fail |