Skip to content

Commit e424046

Browse files
feat(yarn): since there is yarn lock moving everything to yarn
1 parent d94c86e commit e424046

3 files changed

Lines changed: 3 additions & 3 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('**/package-lock.json') }}
44-
- run: npm ci
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-or-pull.yml

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

4646
# 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('**/package-lock.json') }}
25-
- run: npm ci
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)