Skip to content

Commit

Permalink
ci(feat): add cspell workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsneighbour committed Dec 2, 2024
1 parent ba28a6d commit e0034bf
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/cspell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: 'Check spelling'
on: # rebuild any PRs and main branch changes
pull_request:
branches-ignore:
- "dependabot/**"
push:

permissions:
contents: read

jobs:
spellcheck:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v4
- uses: streetsidesoftware/cspell-action@v6
with:
inline: warning # default
incremental_files_only: true # default
strict: false

0 comments on commit e0034bf

Please sign in to comment.