File tree Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,22 @@ 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
36
+ uses : actions/cache@v3
37
+ with :
38
+ path : .turbo
39
+ key : ${{ runner.os }}-turbo-${{ github.sha }}
40
+ restore-keys : |
41
+ ${{ runner.os }}-turbo-
42
+
35
43
- name : Use Node.js 20
36
44
uses : actions/setup-node@v4
37
45
with :
38
46
node-version : 20
39
47
cache : ' npm'
40
48
41
49
- run : npm -v
42
- - run : npm ci
50
+ - run : npm install
43
51
44
52
- name : Authenticate with Registry
45
53
run : |
Original file line number Diff line number Diff line change 29
29
with :
30
30
node-version : ${{ matrix.node-version }}
31
31
cache : ' npm'
32
- - run : npm ci
32
+ - run : npm install
33
33
- run : npm run lint
34
34
- run : sudo npx playwright install-deps
35
35
- run : npm run test
@@ -43,10 +43,17 @@ jobs:
43
43
44
44
steps :
45
45
- uses : actions/checkout@v4
46
+ - name : Cache turbo build setup
47
+ uses : actions/cache@v3
48
+ with :
49
+ path : .turbo
50
+ key : ${{ runner.os }}-turbo-${{ github.sha }}
51
+ restore-keys : |
52
+ ${{ runner.os }}-turbo-
46
53
- name : Use Node.js ${{ matrix.node-version }}
47
54
uses : actions/setup-node@v4
48
55
with :
49
56
node-version : ${{ matrix.node-version }}
50
57
cache : ' npm'
51
- - run : npm ci
58
+ - run : npm install
52
59
- run : npm run build:prod
You can’t perform that action at this time.
0 commit comments