File tree 6 files changed +4248
-39282
lines changed
6 files changed +4248
-39282
lines changed Original file line number Diff line number Diff line change 40
40
id : cache
41
41
with :
42
42
path : ${{ env.CACHE_NODE_MODULES_PATH }}
43
- key : node_modules-${{ hashFiles('**/package-lock.json ') }}
44
- - run : yarn install --immutable --immutable-cache --check-cache
43
+ key : node_modules-${{ hashFiles('**/yarn.lock ') }}
44
+ - run : npm ci --immutable --immutable-cache --check-cache
45
45
if : steps.cache.outputs.cache-hit != 'true'
46
46
47
47
# build valor-software-site-base
53
53
- uses : actions/cache@v3
54
54
with :
55
55
path : ${{ env.CACHE_NODE_MODULES_PATH }}
56
- key : node_modules-${{ hashFiles('**/package-lock.json ') }}
56
+ key : node_modules-${{ hashFiles('**/yarn.lock ') }}
57
57
- uses : actions/cache@v3
58
58
with :
59
59
path : ${{ env.CACHE_DIST_PATH }}
Original file line number Diff line number Diff line change 39
39
id : cache
40
40
with :
41
41
path : ${{ env.CACHE_NODE_MODULES_PATH }}
42
- key : node_modules-${{ hashFiles('**/package-lock.json ') }}
42
+ key : node_modules-${{ hashFiles('**/yarn.lock ') }}
43
43
- run : yarn install --immutable --immutable-cache --check-cache
44
44
if : steps.cache.outputs.cache-hit != 'true'
45
45
55
55
- uses : actions/cache@v3
56
56
with :
57
57
path : ${{ env.CACHE_NODE_MODULES_PATH }}
58
- key : node_modules-${{ hashFiles('**/package-lock.json ') }}
58
+ key : node_modules-${{ hashFiles('**/yarn.lock ') }}
59
59
- uses : actions/cache@v3
60
60
with :
61
61
path : ${{ env.CACHE_DIST_PATH }}
73
73
- uses : actions/cache@v3
74
74
with :
75
75
path : ${{ env.CACHE_NODE_MODULES_PATH }}
76
- key : node_modules-${{ hashFiles('**/package-lock.json ') }}
76
+ key : node_modules-${{ hashFiles('**/yarn.lock ') }}
77
77
- run : npm run lint -- --runner cloud
78
78
79
79
# firebase deploy preview
Original file line number Diff line number Diff line change 21
21
id : cache
22
22
with :
23
23
path : ${{ env.CACHE_NODE_MODULES_PATH }}
24
- key : node_modules-${{ hashFiles('**/package-lock.json ') }}
25
- - run : yarn install --immutable --immutable-cache --check-cache
24
+ key : node_modules-${{ hashFiles('**/yarn.lock ') }}
25
+ - run : npm ci --immutable --immutable-cache --check-cache
26
26
if : steps.cache.outputs.cache-hit != 'true'
27
27
- run : |
28
28
npx ng build --runner cloud --prod --skip-nx-cache
You can’t perform that action at this time.
0 commit comments