mirror of
https://github.com/plausible/analytics.git
synced 2024-12-24 18:12:44 +03:00
19 lines
347 B
YAML
19 lines
347 B
YAML
name: Check spelling
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [ master ]
|
|
merge_group:
|
|
|
|
jobs:
|
|
codespell:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: codespell-project/actions-codespell@v2
|
|
with:
|
|
check_filenames: true
|
|
ignore_words_file: .codespellignore
|
|
path: lib test extra
|