Skip to content

Commit

Permalink
✨ Add a check of internal markdown links
Browse files Browse the repository at this point in the history
  • Loading branch information
CollierCZ committed Mar 2, 2022
1 parent b958182 commit 737f483
Show file tree
Hide file tree
Showing 3 changed files with 3,092 additions and 97 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pr-check-links.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Check internal links
on:
pull_request:
branches: [main]


jobs:
check-internal-links:
name: Check internal links
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: "16"

- name: Install dependencies
run: |
cd docs
npm ci
- name: Check links in Markdown
run: |
cd docs
npm run check-links
Loading

0 comments on commit 737f483

Please sign in to comment.