Skip to content

Style/adjusts

Style/adjusts #51

Workflow file for this run

name: Spell checking
on: [pull_request_target, push, issue_comment]
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: '18'
- run: npm install -g cspell
- run: npm run check-spelling