Skip to content

Commit e23a218

Browse files
committed
use npm instead of yarn for only install
1 parent 24ef1c1 commit e23a218

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
uses: actions/setup-node@v3
1717
with:
1818
node-version: ${{ matrix.node-version }}
19-
- name: yarn install, lint, build, and test
19+
- name: deps install, lint, build, and test
2020
run: |
21-
yarn install
21+
npm install
2222
yarn lint
2323
yarn test --maxWorkers=50% --silent
2424
env:

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
uses: actions/setup-node@v3
2222
with:
2323
node-version: ${{ matrix.node-version }}
24-
- name: yarn install, and build
24+
- name: deps install, and build
2525
run: |
26-
yarn install
26+
npm install
2727
yarn run build
2828
- uses: JS-DevTools/npm-publish@v2
2929
with:

0 commit comments

Comments
 (0)