Files
html5-boilerplate/.github/workflows/spellcheck.yml
dependabot[bot] 1837792897 chore(deps): bump streetsidesoftware/cspell-action from 4 to 5 (#3048)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-01 16:21:02 +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@v4
- uses: streetsidesoftware/cspell-action@v5
with:
inline: warning
strict: false
incremental_files_only: true