Skip to content

Commit efb34d6

Browse files
committed
fix: use npm in ci
1 parent 767276d commit efb34d6

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/deploy.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
uses: actions/checkout@v3
1616
- name: Build latest dist/ folder
1717
run: |
18-
npm install -g pnpm
19-
pnpm install --frozen-lockfile
20-
pnpm run build
18+
npm ci
19+
npm run build
2120
- name: Upload dist/ folder
2221
run: |
2322
git config --global user.email "<41898282+github-actions[bot]@users.noreply.github.com>"

.github/workflows/test.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ jobs:
1313
uses: actions/checkout@v3
1414
- name: Build latest dist/ folder
1515
run: |
16-
npm install -g pnpm
17-
pnpm install --frozen-lockfile
18-
pnpm run build
16+
npm ci
17+
npm run build
1918
- name: Upload dist/ folder
2019
run: |
2120
git config --global user.email "<41898282+github-actions[bot]@users.noreply.github.com>"

0 commit comments

Comments
 (0)