Skip to content

Commit

Permalink
chore: Add new typos CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmilton committed Jul 2, 2024
1 parent 399c1c2 commit 53f6458
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/typos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: typos
on:
push:
branches: [master, next]
pull_request: {}
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.head.label || github.run_id }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
typos:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: crate-ci/typos@master
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"recommendations": [
"biomejs.biome",
"oven.bun-vscode",
"dbaeumer.vscode-eslint"
"dbaeumer.vscode-eslint",
"tekumara.typos-vscode"
]
}

0 comments on commit 53f6458

Please sign in to comment.