forked from github.com/plausible-hosting
add spellcheckers
This commit is contained in:
21
.github/workflows/spellcheck.yml
vendored
Normal file
21
.github/workflows/spellcheck.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
name: spellcheck
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
codespell:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: codespell-project/actions-codespell@v2
|
||||
with:
|
||||
check_filenames: true
|
||||
|
||||
typos:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: crate-ci/typos@master
|
Reference in New Issue
Block a user