Skip to content

change spell check

change spell check #5

Workflow file for this run

name: Spell Check
on: [push, pull_request]
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install cspell
run: npm install -g cspell
- name: Run spell check
run: cspell "**/*.mdx"