Skip to content

Create _typos.toml #16

Create _typos.toml

Create _typos.toml #16

Workflow file for this run

name: Spell Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install cspell
run: npm install -g cspell
- name: Run spell check
run: cspell "**/*.{md,mts}"