mirror of
https://github.com/h5bp/html5-boilerplate.git
synced 2026-01-10 07:08:02 -05:00
21 lines
415 B
YAML
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
|