Skip to content

Commit 4e2e771

Browse files
committed
This time I'll try to get pnpm installed.
1 parent 40a7387 commit 4e2e771

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

.github/workflows/test-e2e.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,23 @@ jobs:
1818
uses: actions/setup-node@v4
1919
with:
2020
node-version: "22"
21+
- name: Install pnpm
22+
uses: pnpm/action-setup@v4
23+
with:
24+
version: 10
25+
- name: Use Node.js 24
26+
uses: actions/setup-node@v4
27+
with:
28+
node-version: 24
29+
cache: 'pnpm'
2130

2231
- name: Install dependencies
23-
run: npm install
32+
run: pnpm install
2433

25-
- name: Install dependencies
26-
run: npm install
34+
- name: Install e2e dependencies
35+
run: pnpm install
2736
working-directory: e2e
2837

29-
- name: Run integration tests
30-
run: npm run test
38+
- name: Run e2e integration tests
39+
run: pnpm test
3140
working-directory: e2e

0 commit comments

Comments
 (0)