Skip to content

Commit a299b42

Browse files
committed
Upgrade github actions to pnpm
1 parent a3b1f38 commit a299b42

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,17 @@ jobs:
88

99
strategy:
1010
matrix:
11-
adapter: ['react', 'vue2', 'vue3']
11+
adapter: ['react', 'vue2', 'vue3', 'svelte5']
1212

1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v1
1616

17+
- name: Install pnpm
18+
uses: pnpm/action-setup@v3
19+
with:
20+
version: 9
21+
1722
- name: Setup Node.js
1823
uses: actions/setup-node@v2
1924
with:
@@ -30,7 +35,7 @@ jobs:
3035
3136
- name: Build Inertia
3237
run: |
33-
npm install
38+
pnpm install
3439
cd packages/core && npm run build
3540
cd ../${{ matrix.adapter }} && npm run build
3641

0 commit comments

Comments
 (0)