Skip to content

Commit

Permalink
chore: fix .github ci error
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr.Mao committed May 7, 2023
1 parent 91bbb61 commit 5ea8396
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
node-version: 16.x

- name: Install
run: npm i
run: npm i pnpm -g && pnpm i

- name: Lint
run: npm run lint
run: pnpm lint

test:
runs-on: ${{ matrix.os }}
Expand All @@ -42,10 +42,10 @@ jobs:
node-version: ${{ matrix.node }}

- name: Install
run: npm i
run: npm i pnpm -g && pnpm i

- name: Build
run: npm run build
run: pnpm build

- name: Test
run: npm run test
run: pnpm test

0 comments on commit 5ea8396

Please sign in to comment.