Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[workflow]add workflow to check link validation #370

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/check-links.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Check Relative Links
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
check_links:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "20"

- name: Install Markdown link checker
run: npm install -g markdown-link-check

- name: Check links in Markdown files
run: |
find . -name "*.md" -print0 | xargs -0 markdown-link-check --quiet --config .markdown-link-check.json
14 changes: 14 additions & 0 deletions .markdown-link-check.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"ignorePatterns": [
],
"replacementPatterns": [
{
"pattern": "^/",
"replacement": "https://solana.com/"
}
],

"verbosity": "ERROR",
"httpStatusIgnore": [403],
"timeout": "15s"
}
Loading