Skip to content

Commit b1f8740

Browse files
committed
chore: Update yarn installation command to use Yarn v4 and add Yarn v4 installation step
1 parent 0d9cb27 commit b1f8740

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/actions/deps-setup/action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@ runs:
99
steps:
1010
- name: Setup Node.js and yarn v4
1111
uses: actions/setup-node@v4
12-
run: corepack enable && corepack prepare yarn@4 --activate
1312
with:
1413
node-version: '20.x'
1514
cache: 'yarn'
1615
cache-dependency-path: ${{ inputs.working_directory }}/yarn.lock
16+
17+
- name: Install Yarn v4
18+
run: corepack enable && corepack prepare yarn@4 --activate
19+
shell: bash
20+
1721
- name: Install dependencies
1822
run: yarn install --frozen-lockfile
1923
shell: bash

0 commit comments

Comments
 (0)