We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d9cb27 commit b1f8740Copy full SHA for b1f8740
.github/actions/deps-setup/action.yml
@@ -9,11 +9,15 @@ runs:
9
steps:
10
- name: Setup Node.js and yarn v4
11
uses: actions/setup-node@v4
12
- run: corepack enable && corepack prepare yarn@4 --activate
13
with:
14
node-version: '20.x'
15
cache: 'yarn'
16
cache-dependency-path: ${{ inputs.working_directory }}/yarn.lock
+
17
+ - name: Install Yarn v4
18
+ run: corepack enable && corepack prepare yarn@4 --activate
19
+ shell: bash
20
21
- name: Install dependencies
22
run: yarn install --frozen-lockfile
23
shell: bash
0 commit comments