Skip to content

Commit

Permalink
fail spellcheck job if spelling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
austinpray-mixpanel authored Jan 10, 2025
1 parent 15a54e5 commit 8666655
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cspell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# Notification level to use with inline reporting of spelling errors.
# Allowed values are: warning, error, none
# Default: warning
inline: warning
inline: error

# Reports flagged / forbidden words as errors.
# If true, errors will still be reported even if `inline` is "none"
Expand All @@ -48,10 +48,10 @@ jobs:
# Determines if the action should be failed if any spelling issues are found.
# Allowed values are: true, false
# Default: true
strict: false
strict: true

# Limit the files checked to the ones in the pull request or push.
incremental_files_only: ${{ github.event_name != 'workflow_dispatch' }}
incremental_files_only: false

# Path to `cspell.json`
config: 'cspell.json'
Expand Down

0 comments on commit 8666655

Please sign in to comment.