Fix naming consistency and add missing hook tests (#1049) #1874
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SpellCheck | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
spellchecking: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Check out the code | |
- uses: actions/setup-node@v4 | |
name: Run spell check | |
with: | |
node-version: "21" | |
- run: npm install -g cspell | |
- run: cspell --config ./.cspell/cspell.json "**/*.jl" "**/*.md" |