Skip to content

Commit 4332762

Browse files
authored
pin cspell 8.13.1 after bug on8.13.2 (#4191)
* pin cspell version due to issue on last release * chore: Update cspell npm dependency to version 8.13.1
1 parent 186d66b commit 4332762

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/cli-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- uses: actions/setup-node@v4
3838
with:
3939
node-version: "20"
40-
- run: npm install -g cspell
40+
- run: npm install -g cspell@8.13.1
4141
- name: Spell check for CLI source code
4242
run: cspell lint '**/*.{go,md}' --config ./cli/azd/.vscode/cspell.yaml --root ./cli/azd --no-progress
4343

.github/workflows/cspell-misc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
- uses: actions/setup-node@v4
2121
with:
2222
node-version: "20"
23-
- run: npm install -g cspell
23+
- run: npm install -g cspell@8.13.1
2424
- name: Spell check for general files
2525
run: cspell lint '**/*' --config ./.vscode/cspell.misc.yaml --relative --no-progress

.github/workflows/templates-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
- uses: actions/setup-node@v4
2525
with:
2626
node-version: "20"
27-
- run: npm install -g cspell
27+
- run: npm install -g cspell@8.13.1
2828
- name: Spell check for templates
2929
run: cspell lint '**/*' --config ./templates/cspell.yaml --root ./templates --no-progress

.github/workflows/vscode-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/setup-node@v4
2121
with:
2222
node-version: "20"
23-
- run: npm install -g cspell
23+
- run: npm install -g cspell@8.13.1
2424
- name: Spell check for vscode extension
2525
run: cspell lint '**/*.ts' --config ./ext/vscode/.vscode/cspell.yaml --root ./ext/vscode --no-progress
2626

0 commit comments

Comments
 (0)