We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c682d52 commit 55a3376Copy full SHA for 55a3376
.github/workflows/run-tests.yaml
@@ -108,7 +108,9 @@ jobs:
108
name: Setup node
109
with:
110
node-version: "16"
111
- - run: npm install -g cspell
112
- name: Install cSpell
113
- - run: cspell --config ./cSpell.json "docs/**/*.md" --no-progress
114
- name: Run cSpell
+ - name: Install cSpell
+ run: npm install -g cspell
+ - name: Copy cSpell config
+ run: cp ./build/cSpell.json ./cSpell.json
115
+ - name: Run cSpell
116
+ run: cspell --config ./cSpell.json "docs/**/*.md" --no-progress
cSpell.json renamed to build/cSpell.json
0 commit comments