123456789101112131415161718 |
- 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/*
|