11 lines
257 B
YAML
11 lines
257 B
YAML
|
name: 'Check Spelling'
|
||
|
on: # rebuild any PRs and main branch changes
|
||
|
pull_request:
|
||
|
push:
|
||
|
|
||
|
jobs:
|
||
|
spellcheck: # run the action
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: streetsidesoftware/cspell-action@v2.13.0
|