Skip to content

Add spell check workflow #1

Add spell check workflow

Add spell check workflow #1

Workflow file for this run

name: Spell Check
on:
push:
branches:
- '*'
pull_request:
jobs:
spell-check:
runs-on: ubuntu-latest
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '22'
- run: npm install -g cspell
- run: cspell "**/*.tex"