We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6099f79 commit 1c6004dCopy full SHA for 1c6004d
.github/workflows/ci-markdown-link.yml
@@ -2,16 +2,19 @@ name: Markdown Link Check
2
3
on:
4
pull_request:
5
+ paths:
6
+ - '**/*.md'
7
8
jobs:
9
markdown-link-check:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v4
13
- - name: "Markdown Link Check"
- uses: gaurav-nelson/github-action-markdown-link-check@v1
14
+ # equivalent cli: linkspector check
15
+ - name: Run linkspector
16
+ uses: umbrelladocs/action-linkspector@v1
17
with:
- config-file: '.markdown-link-check.json'
- use-quiet-mode: 'yes'
- use-verbose-mode: 'yes'
18
+ github_token: ${{ secrets.GITHUB_TOKEN }}
19
+ reporter: github-pr-review
20
+ fail_on_error: true
.markdown-link-check.json
0 commit comments