mirror of https://github.com/CrimsonTome/tldr.git
19 lines
403 B
YAML
19 lines
403 B
YAML
name: Codespell
|
|
|
|
on: ['pull_request']
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: codespell-project/actions-codespell@v2
|
|
with:
|
|
ignore_words_file: .github/codespell-ignore
|
|
# Exit with 0 regardless of typos.
|
|
only_warn: 1
|
|
# Only check English files from the pages directory
|
|
path: pages/*
|