diff --git a/.github/workflows/CI-build.yml b/.github/workflows/CI-build.yml index a14763d28..cc19d429b 100644 --- a/.github/workflows/CI-build.yml +++ b/.github/workflows/CI-build.yml @@ -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: diff --git a/.github/workflows/CI-typos.yml b/.github/workflows/CI-typos.yml new file mode 100644 index 000000000..ab84be33d --- /dev/null +++ b/.github/workflows/CI-typos.yml @@ -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