File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 54
54
node-version : 20
55
55
cache : ' npm'
56
56
- name : Install dependencies
57
- run : npm ci
57
+ run : npm install
58
58
- name : Publish to Chromatic
59
59
uses : chromaui/action@v10
60
60
continue-on-error : true
Original file line number Diff line number Diff line change @@ -32,13 +32,13 @@ jobs:
32
32
# pulls all commits (needed for lerna / semantic release to correctly version)
33
33
fetch-depth : ' 0'
34
34
35
- - name : Cache turbo build setup
35
+ - name : Cache build setup
36
36
uses : actions/cache@v3
37
37
with :
38
- path : .turbo
39
- key : ${{ runner.os }}-turbo -${{ github.sha }}
38
+ path : node_modules/.cache
39
+ key : ${{ runner.os }}-cache -${{ github.sha }}
40
40
restore-keys : |
41
- ${{ runner.os }}-turbo -
41
+ ${{ runner.os }}-cache -
42
42
43
43
- name : Use Node.js 20
44
44
uses : actions/setup-node@v4
Original file line number Diff line number Diff line change @@ -43,13 +43,13 @@ jobs:
43
43
44
44
steps :
45
45
- uses : actions/checkout@v4
46
- - name : Cache turbo build setup
46
+ - name : Cache build setup
47
47
uses : actions/cache@v3
48
48
with :
49
- path : .turbo
50
- key : ${{ runner.os }}-turbo -${{ github.sha }}
49
+ path : node_modules/.cache
50
+ key : ${{ runner.os }}-cache -${{ github.sha }}
51
51
restore-keys : |
52
- ${{ runner.os }}-turbo -
52
+ ${{ runner.os }}-cache -
53
53
- name : Use Node.js ${{ matrix.node-version }}
54
54
uses : actions/setup-node@v4
55
55
with :
You can’t perform that action at this time.
0 commit comments