Skip to content

Commit

Permalink
Move .jsonc files to tools
Browse files Browse the repository at this point in the history
  • Loading branch information
ladatz committed Jan 19, 2024
1 parent 0959ee7 commit a025582
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 33 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/markdown-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ jobs:
lint-markdown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: |
npm install markdownlint-cli
- run: |
node_modules/.bin/markdownlint -c .markdownlint.jsonc -i node_modules/ .
node_modules/.bin/markdownlint -c ./tools/.markdownlint.jsonc -i node_modules/ .
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
npm install markdown-link-check
find . -type d \( -name node_modules -o -name .github \) -prune -o -type f -name '*.md' -print0 | xargs -0 -n1 node_modules/.bin/markdown-link-check --config .markdownlinkcheck.jsonc --quiet
find . -type d \( -name node_modules -o -name .github \) -prune -o -type f -name '*.md' -print0 | xargs -0 -n1 node_modules/.bin/markdown-link-check --config ./tools/.markdownlinkcheck.jsonc --quiet
17 changes: 0 additions & 17 deletions .markdownlinkcheck.jsonc

This file was deleted.

12 changes: 0 additions & 12 deletions .markdownlint.jsonc

This file was deleted.

0 comments on commit a025582

Please sign in to comment.