Skip to content

Commit c4f6e47

Browse files
committed
Update spellcheck and link checker to use correct directories
1 parent 30a2018 commit c4f6e47

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ defaults:
2525
jobs:
2626
spellcheck:
2727
runs-on: ubuntu-latest
28+
needs:
29+
- build
2830
steps:
2931
- name: Checkout sources
3032
uses: actions/checkout@v3

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"version": "1.0.0",
44
"description": "",
55
"scripts": {
6-
"spellcheck": "mdspell --en-gb --report --ignore-acronyms --ignore-numbers --no-suggestions 'content/**/*.md'",
7-
"broken-link-local": "blcl --recursive --ordered --exclude-external ./public/",
8-
"broken-link-all": "blcl --recursive --exclude farnell --exclude microsoft --exclude https://github.com/sourcebots/docs/tree/master/content/* --ordered ./public/",
6+
"spellcheck": "mdspell --en-gb --report --ignore-acronyms --ignore-numbers --no-suggestions 'docs/**/*.md'",
7+
"broken-link-local": "blcl --recursive --ordered --exclude-external ./site/",
8+
"broken-link-all": "blcl --recursive --exclude farnell --exclude microsoft --exclude https://github.com/sourcebots/docs/tree/master/docs/* --ordered ./site/",
99
"test": "npm run spellcheck && npm run broken-link-local",
1010
"ci-test": "npm run spellcheck && npm run broken-link-local"
1111
},

0 commit comments

Comments
 (0)