We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01a55ca commit 9c55fd7Copy full SHA for 9c55fd7
2 files changed
.github/actions/setup/action.yml
@@ -10,26 +10,11 @@ runs:
10
node-version: 20.x
11
node-version-file: .nvmrc
12
13
- - name: Cache dependencies
14
- id: yarn-cache
15
- uses: actions/cache@v4
16
- with:
17
- path: |
18
- **/node_modules
19
- .yarn/install-state.gz
20
- key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
21
- restore-keys: |
22
- ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
23
- ${{ runner.os }}-yarn-
24
-
25
- name: Install dependencies
26
- if: steps.yarn-cache.outputs.cache-hit != 'true'
27
run: yarn install --immutable
28
shell: bash
29
30
- name: Install dependencies in example
31
32
working-directory: ./example
33
34
35
0 commit comments