Skip to content

Commit 6da5a69

Browse files
committed
Update link checker in docs workflow to skip LinkedIn URLs to prevent frequent 429 errors
1 parent 0ec9406 commit 6da5a69

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ jobs:
6262
run: |
6363
# Install link checker
6464
npm install -g linkinator
65-
# Check generated documentation
66-
linkinator docs/ --recurse --silent
65+
# Check generated documentation, skipping LinkedIn which often returns 429
66+
linkinator docs/ --recurse --silent --skip "https://www.linkedin.com/in/vadim-starichkov/"
6767
6868
- name: Validate JSDoc coverage
6969
run: |

GITHUB_ACTIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ ls -la docs/ # Should contain index.html and other files
273273
```bash
274274
# Test link validation locally
275275
npm install -g linkinator
276-
linkinator docs/ --recurse --silent
276+
linkinator docs/ --recurse --silent --skip "https://www.linkedin.com/in/vadim-starichkov/"
277277
```
278278

279279
### Debug Steps

0 commit comments

Comments
 (0)