Skip to content

Commit

Permalink
ci: move spell check to separate workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zyf722 committed Dec 30, 2024
1 parent df9e114 commit 7a2350a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/CI-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Check typos on code
uses: crate-ci/typos@master
with:
config: ./typos.toml

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/CI-typos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CI-typos

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Check typos on code
uses: crate-ci/typos@master
with:
config: ./typos.toml

0 comments on commit 7a2350a

Please sign in to comment.