Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Commit

Permalink
feat(spell-check): Add GitHub Actions workflow for spell checking
Browse files Browse the repository at this point in the history
  • Loading branch information
endersonmenezes committed Nov 12, 2024
1 parent 72c10d1 commit eea5ea8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/spell-checking.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: 'Check spelling'
on: # rebuild any PRs and main branch changes
pull_request:
push:

jobs:
spellcheck: # run the action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: streetsidesoftware/cspell-action@v6

0 comments on commit eea5ea8

Please sign in to comment.