Skip to content

Commit

Permalink
chore: also exclude changelog file from link checker
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Sep 9, 2022
1 parent 69efc79 commit 5855477
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/markdown-link-check.yml
Expand Up @@ -31,5 +31,6 @@ jobs:
run: yarn
- name: Run markdown-link-check on MD files
run:
find . -name "*.md" | grep -v node_modules | xargs -n 1 yarn
markdown-link-check -c markdown_link_check_config.json -q
find . -name "*.md" | grep -v node_modules | grep -v CHANGELOG.md |
xargs -n 1 yarn markdown-link-check -c markdown_link_check_config.json
-q

0 comments on commit 5855477

Please sign in to comment.