Skip to content

Commit 83d7f77

Browse files
committed
Uses Linkspector for checking links on md files
1 parent 84ab037 commit 83d7f77

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

.github/config/linkspector.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
aliveStatusCodes:
2+
- 200
3+
- 406
4+
dirs:
5+
- .
6+
- .github
7+
ignorePatterns:
8+
- pattern: '^https://basescan.org/address/.*$'
9+
useGitIgnore: true

.github/workflows/check-md-links.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ jobs:
66
check-md-links:
77
runs-on: ubuntu-latest
88
steps:
9-
- name: Clone @api3/data-feed-proxy-combinators
10-
uses: actions/checkout@v4
11-
- name: Check Markdown links
12-
uses: gaurav-nelson/github-action-markdown-link-check@v1
9+
- name: Clone @api3/data-feed-proxy-combinators
10+
uses: actions/checkout@v4
11+
- name: Check Markdown links
12+
uses: umbrelladocs/action-linkspector@v1
13+
with:
14+
reporter: github-pr-review
15+
config_file: .github/config/linkspector.yml
16+
fail_on_error: true

0 commit comments

Comments
 (0)