Skip to content

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

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

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

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