codespell.yml 403 B

123456789101112131415161718
  1. name: Codespell
  2. on: ['pull_request']
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v4
  8. - uses: codespell-project/actions-codespell@v2
  9. with:
  10. ignore_words_file: .github/codespell-ignore
  11. # Exit with 0 regardless of typos.
  12. only_warn: 1
  13. # Only check English files from the pages directory
  14. path: pages/*