Skip to content

SUP-31 Code Snippet Utilities #155

SUP-31 Code Snippet Utilities

SUP-31 Code Snippet Utilities #155

Workflow file for this run

name: Check - spelling
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm install -g cspell
- name: Run spell check
run: cspell "**/*.md" "**/*.mdx" --words-only cspell-words.txt