File tree Expand file tree Collapse file tree 2 files changed +1361
-23
lines changed Expand file tree Collapse file tree 2 files changed +1361
-23
lines changed Original file line number Diff line number Diff line change @@ -10,26 +10,11 @@ runs:
1010 node-version : 20.x
1111 node-version-file : .nvmrc
1212
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-
2513 - name : Install dependencies
26- if : steps.yarn-cache.outputs.cache-hit != 'true'
2714 run : yarn install --immutable
2815 shell : bash
2916
3017 - name : Install dependencies in example
31- if : steps.yarn-cache.outputs.cache-hit != 'true'
3218 working-directory : ./example
3319 run : yarn install --immutable
3420 shell : bash
35-
You can’t perform that action at this time.
0 commit comments