Skip to content

Commit 3dadb7f

Browse files
committed
chore: fix CI workflow to install correct version of yarn
1 parent f3382bc commit 3dadb7f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,17 @@ jobs:
2828
- name: Set up Node.js
2929
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
3030
with:
31-
node-version: 18.x
31+
node-version: 24.x
3232

3333
- name: Install Yarn
34+
working-directory: cli
3435
run: |
3536
corepack enable
3637
corepack prepare yarn@stable --activate
3738
3839
- name: Build CLI
39-
run: yarn --cwd cli
40+
working-directory: cli
41+
run: yarn
4042

4143
- name: Get all changed webui files
4244
id: changed_webui_files

0 commit comments

Comments
 (0)