Skip to content

Commit

Permalink
fix cspell config to ensure full spellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
caindy committed Jan 12, 2024
1 parent 4ede060 commit 4090d08
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/spellcheck.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: 'Check spelling'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- 1.0.0*
pull_request:
branches:
- 1.0.0*

jobs:
spellcheck: # run the action
Expand All @@ -10,10 +14,11 @@ jobs:
- uses: actions/checkout@v4
- uses: streetsidesoftware/cspell-action@v5
with:
incremental_files_only: false
config: 'cspell.json'
# eventually we intend to fail the build on spelling errors
# so we restrict this to the docs folder
root: './docs'
# only warn for now
inline: warning # error
strict: false # true fails the build
config: 'cspell.json'

0 comments on commit 4090d08

Please sign in to comment.