Files
hugo/.github/workflows/spellcheck.yml
T
2022-06-16 17:32:58 +09:00

21 lines
415 B
YAML

name: 'Check spelling'
on: # rebuild any PRs and main branch changes
push:
branches-ignore:
- "dependabot/**"
pull_request:
permissions:
contents: read
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: streetsidesoftware/cspell-action@v2
with:
inline: warning
strict: false
incremental_files_only: true