Skip to content

Pin cspell 8.12.1 b/c 8.13.0 has a bug #988

Pin cspell 8.12.1 b/c 8.13.0 has a bug

Pin cspell 8.12.1 b/c 8.13.0 has a bug #988

Workflow file for this run

name: misc
on:
pull_request:
branches: [main]
paths-ignore:
# Changes here should be kept in-sync with projects listed in cspell.misc.yaml
- 'eng/**' # Not required
# Standalone projects that have their own cspell
- 'cli/**'
- 'ext/vscode/**'
- 'ext/devcontainer/**'
- 'templates/**'
jobs:
cspell-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
# use 8.12.1 b/c 8.13.0 has a bug: https://github.com/streetsidesoftware/cspell/issues/6025
- run: npm install -g [email protected]
- name: Spell check for general files
run: cspell lint '**/*' --config ./.vscode/cspell.misc.yaml --relative --no-progress