Skip to content

Added spellchecker command and workflow #9

Added spellchecker command and workflow

Added spellchecker command and workflow #9

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
spell-check:
name: Check spelling
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install cspell
run: npm install -g cspell
- name: Run spell check
run: cspell