mirror of
https://github.com/plausible/hosting.git
synced 2024-11-04 23:35:59 -06:00
21 lines
355 B
YAML
21 lines
355 B
YAML
|
name: spellcheck
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
push:
|
||
|
|
||
|
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
|