Skip to content

fix(ci): new spell check workflow #214

fix(ci): new spell check workflow

fix(ci): new spell check workflow #214

Workflow file for this run

name: Spell Check
on:
pull_request:
paths:
- "**/*.md"
- "**/*.mdx"
- "**/*.txt"
- "**/*.yml"
- "**/*.yaml"
- "**/*.py"
- "**/*.js"
- "**/*.tsx"
- "**/*.html"
- "**/*.rst"
- "**/*.go"
- "!**/*.svg"
- "!**/*.sol"
- "!**/*.sum"
- "!**/*.mod"
- "!**/*.json"
permissions:
contents: read
jobs:
spell-check:
if: github.event.pull_request.changed_files > 0
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Spell Check
uses: crate-ci/typos@v1.29.4
with:
config: ./.github/config/typos.toml