Skip to content

Fix and refactor SAC #1681

Fix and refactor SAC

Fix and refactor SAC #1681

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@v2
name: Check out the code
- uses: actions/setup-node@v1
name: Run spell check
with:
node-version: "14"
- run: npm install -g cspell
- run: cspell --config ./.cspell/cspell.json "**/*.jl" "**/*.md"