diff --git a/.github/workflows/typo-check.yml b/.github/workflows/typo-check.yml new file mode 100644 index 000000000..6db7adc4a --- /dev/null +++ b/.github/workflows/typo-check.yml @@ -0,0 +1,20 @@ +name: Typo check + +on: + push: + branches: + - main + + pull_request: + types: [opened, reopened, synchronize] + +jobs: + run: + name: Spell Check with Typos + runs-on: ubuntu-latest + steps: + - name: Checkout Actions Repository + uses: actions/checkout@v4 + + - name: Writes changes in the local checkout + uses: crate-ci/typos@master diff --git a/typos.toml b/typos.toml new file mode 100644 index 000000000..8fdb040f0 --- /dev/null +++ b/typos.toml @@ -0,0 +1,6 @@ +[default] +extend-ignore-re = [ + # Chalk.ist website + "Chalk\\.ist", +] +