Skip to content

ci(lint): add cspell and pr-title lint ci #2

ci(lint): add cspell and pr-title lint ci

ci(lint): add cspell and pr-title lint ci #2

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