blob: 0129bbb278b8696e8a2509c04f153a0cd0a283be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
name: 'Check spelling'
on: # rebuild any PRs and main branch changes
push:
branches-ignore:
- "dependabot/**"
pull_request:
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: streetsidesoftware/cspell-action@3bc52c39528d0214a947ff7f8b5c23ad3273435b
with:
inline: warning
strict: false
incremental_files_only: true
|