File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,17 @@ jobs:
26
26
name : Get yarn cache directory path
27
27
run : echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
28
28
29
- - name : Cache Yarn dependencies
29
+ - name : Cache dependencies
30
30
uses : actions/cache@v3
31
- id : yarn- cache
31
+ id : cache
32
32
with :
33
- path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
34
- key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
33
+ path : |
34
+ ${{ steps.yarn-cache-dir-path.outputs.dir }}
35
+ .turbo
36
+ key : ${{ runner.os }}-deps-${{ hashFiles('**/yarn.lock') }}-${{ github.sha }}
35
37
restore-keys : |
36
- ${{ runner.os }}-yarn-
38
+ ${{ runner.os }}-deps-${{ hashFiles('**/yarn.lock') }}-
39
+ ${{ runner.os }}-deps-
37
40
38
41
- name : Install dependencies
39
42
run : yarn install
You can’t perform that action at this time.
0 commit comments