Skip to content

Commit

Permalink
Merge branch 'main' into use-template-for-pipeline-config-generation
Browse files Browse the repository at this point in the history
  • Loading branch information
vhvb1989 committed Aug 2, 2024
2 parents cd0a443 + c5faa79 commit 1cc82dd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cli-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "20"
- run: npm install -g cspell
# use 8.12.1 b/c 8.13.0 has a bug: https://github.com/streetsidesoftware/cspell/issues/6025
- run: npm install -g cspell@8.12.1
- name: Spell check for CLI source code
run: cspell lint '**/*.{go,md}' --config ./cli/azd/.vscode/cspell.yaml --root ./cli/azd --no-progress

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/cspell-misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "20"
- run: npm install -g cspell
# use 8.12.1 b/c 8.13.0 has a bug: https://github.com/streetsidesoftware/cspell/issues/6025
- run: npm install -g cspell@8.12.1
- name: Spell check for general files
run: cspell lint '**/*' --config ./.vscode/cspell.misc.yaml --relative --no-progress
3 changes: 2 additions & 1 deletion .github/workflows/templates-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "20"
- run: npm install -g cspell
# use 8.12.1 b/c 8.13.0 has a bug: https://github.com/streetsidesoftware/cspell/issues/6025
- run: npm install -g cspell@8.12.1
- name: Spell check for templates
run: cspell lint '**/*' --config ./templates/cspell.yaml --root ./templates --no-progress
3 changes: 2 additions & 1 deletion .github/workflows/vscode-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "20"
- run: npm install -g cspell
# use 8.12.1 b/c 8.13.0 has a bug: https://github.com/streetsidesoftware/cspell/issues/6025
- run: npm install -g cspell@8.12.1
- name: Spell check for vscode extension
run: cspell lint '**/*.ts' --config ./ext/vscode/.vscode/cspell.yaml --root ./ext/vscode --no-progress

Expand Down

0 comments on commit 1cc82dd

Please sign in to comment.