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 0b130be commit 0d9cb27Copy full SHA for 0d9cb27
.github/actions/deps-setup/action.yml
@@ -7,15 +7,13 @@ inputs:
7
runs:
8
using: composite
9
steps:
10
- - name: Setup Node.js
+ - 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
- - name: Install Yarn v4
17
- shell: bash
18
- run: corepack enable && corepack prepare yarn@4 --activate
19
- name: Install dependencies
20
run: yarn install --frozen-lockfile
21
shell: bash
0 commit comments