Skip to content

Commit 7be1b75

Browse files
committed
fix: changed npm ci to yarn install
1 parent 4373ea7 commit 7be1b75

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/on-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
path: ${{ env.CACHE_NODE_MODULES_PATH }}
4343
key: node_modules-${{ hashFiles('**/yarn.lock') }}
44-
- run: npm ci --immutable --immutable-cache --check-cache
44+
- run: yarn install --immutable --immutable-cache --check-cache
4545
if: steps.cache.outputs.cache-hit != 'true'
4646

4747
# build valor-software-site-base

.github/workflows/on_push_to_master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
path: ${{ env.CACHE_NODE_MODULES_PATH }}
2424
key: node_modules-${{ hashFiles('**/yarn.lock') }}
25-
- run: npm ci --immutable --immutable-cache --check-cache
25+
- run: yarn install --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)