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 0ec9406 commit 6da5a69Copy full SHA for 6da5a69
2 files changed
.github/workflows/docs.yml
@@ -62,8 +62,8 @@ jobs:
62
run: |
63
# Install link checker
64
npm install -g linkinator
65
- # Check generated documentation
66
- linkinator docs/ --recurse --silent
+ # Check generated documentation, skipping LinkedIn which often returns 429
+ linkinator docs/ --recurse --silent --skip "https://www.linkedin.com/in/vadim-starichkov/"
67
68
- name: Validate JSDoc coverage
69
GITHUB_ACTIONS.md
@@ -273,7 +273,7 @@ ls -la docs/ # Should contain index.html and other files
273
```bash
274
# Test link validation locally
275
276
-linkinator docs/ --recurse --silent
+linkinator docs/ --recurse --silent --skip "https://www.linkedin.com/in/vadim-starichkov/"
277
```
278
279
### Debug Steps
0 commit comments