mirror of
https://github.com/flame-engine/flame.git
synced 2026-03-27 12:21:35 +00:00
Update cspell used on CI to latest version `9.2.1`: https://www.npmjs.com/package/cspell Note that the contributing guidelines does not mandate a version, so this (the latest) will be installed if following those instructions.
23 lines
492 B
YAML
23 lines
492 B
YAML
name: spell_checker
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types: [opened, reopened, synchronize]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: npm -g install cspell@9.2.1
|
|
# spell check
|
|
- run: ./scripts/cspell-run.sh
|
|
# verify dictionary words are sorted and not orphan
|
|
- run: ./scripts/cspell-verify.sh |