Skip to content

ci(lint): add lint workflows #1

ci(lint): add lint workflows

ci(lint): add lint workflows #1

Workflow file for this run

name: CSpell
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
lint-cspell:
name: Lint CSpell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: streetsidesoftware/cspell-action@v6
with:
files: "**"
config: cspell.json
strict: true
verbose: true