Skip to content

Merge pull request #9976 from ever-co/ui/stage-ux-sweep #10616

Merge pull request #9976 from ever-co/ui/stage-ux-sweep

Merge pull request #9976 from ever-co/ui/stage-ux-sweep #10616

Workflow file for this run

name: 'Check Spelling and Typos with cspell'
on:
push:
branches:
- develop
pull_request:
branches:
- develop
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
spellcheck:
name: Cspell
runs-on: ${{ vars.RUNNER_LINUX_X64_4 || 'ubuntu-latest' }}
timeout-minutes: 300
steps:
- uses: actions/checkout@v5
- uses: streetsidesoftware/cspell-action@v2
with:
# Github token used to fetch the list of changed files in the commit.
github_token: ${{ secrets.GITHUB_TOKEN }}
strict: true
config: '.cspell.json'