Skip to content

Fix and unit test for issue #1079 #2012

Fix and unit test for issue #1079

Fix and unit test for issue #1079 #2012

Workflow file for this run

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"