Skip to content

Commit

Permalink
ci: check for typos (#25)
Browse files Browse the repository at this point in the history
* ci: check for typos

* consistent naming
  • Loading branch information
Hofer-Julian authored Sep 6, 2024
1 parent 9d196ab commit 5151810
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/typos.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[files]
extend-exclude = [
".git/",
".pixi/",
"**/*.snap",
"crates/deno_task_shell",
]
ignore-hidden = false

0 comments on commit 5151810

Please sign in to comment.