Skip to content

Commit 2b4ca59

Browse files
committed
feat: fixed dependencies
1 parent e4007a8 commit 2b4ca59

File tree

6 files changed

+4248
-39282
lines changed

6 files changed

+4248
-39282
lines changed

.github/workflows/on-deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ jobs:
4040
id: cache
4141
with:
4242
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
4545
if: steps.cache.outputs.cache-hit != 'true'
4646

4747
# build valor-software-site-base
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/cache@v3
5454
with:
5555
path: ${{ env.CACHE_NODE_MODULES_PATH }}
56-
key: node_modules-${{ hashFiles('**/package-lock.json') }}
56+
key: node_modules-${{ hashFiles('**/yarn.lock') }}
5757
- uses: actions/cache@v3
5858
with:
5959
path: ${{ env.CACHE_DIST_PATH }}

.github/workflows/on-push-or-pull.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
id: cache
4040
with:
4141
path: ${{ env.CACHE_NODE_MODULES_PATH }}
42-
key: node_modules-${{ hashFiles('**/package-lock.json') }}
42+
key: node_modules-${{ hashFiles('**/yarn.lock') }}
4343
- run: yarn install --immutable --immutable-cache --check-cache
4444
if: steps.cache.outputs.cache-hit != 'true'
4545

@@ -55,7 +55,7 @@ jobs:
5555
- uses: actions/cache@v3
5656
with:
5757
path: ${{ env.CACHE_NODE_MODULES_PATH }}
58-
key: node_modules-${{ hashFiles('**/package-lock.json') }}
58+
key: node_modules-${{ hashFiles('**/yarn.lock') }}
5959
- uses: actions/cache@v3
6060
with:
6161
path: ${{ env.CACHE_DIST_PATH }}
@@ -73,7 +73,7 @@ jobs:
7373
- uses: actions/cache@v3
7474
with:
7575
path: ${{ env.CACHE_NODE_MODULES_PATH }}
76-
key: node_modules-${{ hashFiles('**/package-lock.json') }}
76+
key: node_modules-${{ hashFiles('**/yarn.lock') }}
7777
- run: npm run lint -- --runner cloud
7878

7979
# firebase deploy preview

.github/workflows/on_push_to_master.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
id: cache
2222
with:
2323
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
2626
if: steps.cache.outputs.cache-hit != 'true'
2727
- run: |
2828
npx ng build --runner cloud --prod --skip-nx-cache

0 commit comments

Comments
 (0)