diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml new file mode 100644 index 0000000..4dbc8b7 --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,18 @@ +name: Typos +on: + push: + branches: + - main + pull_request: + branches: + - main +jobs: + + typos: + name: spell check + runs-on: ubuntu-latest + steps: + - name: Checkout Actions Repository + uses: actions/checkout@v4 + - name: Check spelling + uses: crate-ci/typos@master diff --git a/typos.toml b/typos.toml new file mode 100644 index 0000000..323e500 --- /dev/null +++ b/typos.toml @@ -0,0 +1,8 @@ +[files] +extend-exclude = [ + ".git/", + ".pixi/", + "**/*.snap", + "crates/deno_task_shell", +] +ignore-hidden = false