Skip to content

Commit aa221a3

Browse files
committed
feat(e2e): add node setup and dependency installation steps in E2E job
1 parent b58a736 commit aa221a3

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/e2e-naga.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,17 @@ jobs:
5959
LIVE_MASTER_ACCOUNT: ${{ secrets[matrix.privateKey] }}
6060
steps:
6161
- uses: actions/checkout@v4
62+
- uses: actions/setup-node@v4
63+
with:
64+
node-version: 22.18.0
65+
registry-url: https://registry.npmjs.org
66+
cache: pnpm
67+
- name: Enable corepack + pin pnpm
68+
run: |
69+
corepack enable
70+
corepack prepare [email protected] --activate
71+
- name: Install Dependencies
72+
run: pnpm install --frozen-lockfile
6273
- name: Download build output
6374
uses: actions/download-artifact@v4
6475
with:

0 commit comments

Comments
 (0)