Skip to content

Merge pull request #25 from TheModdersDen/development #5

Merge pull request #25 from TheModdersDen/development

Merge pull request #25 from TheModdersDen/development #5

Workflow file for this run

# Spell checker workflow for GitHub Actions using cSpell and using a custom dictionary from VS Code
name: Spell Checker
on:
push:
branches:
- production
- development
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install cSpell
run: npm install -g cspell
- name: Spell check
run: cspell "**/*"
env:
CSpellUserSettings: .vscode/cspell.json