Skip to content

Commit b98de7a

Browse files
author
Jade Pennig
committed
chore(yarn3): update deprecated yarn flag
1 parent cf740b5 commit b98de7a

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/cypress.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
${{ runner.os }}-yarn
3030
3131
- name: Install Dependencies
32-
run: yarn install --frozen-lockfile && yarn bootstrap
32+
run: yarn install --immutable && yarn bootstrap
3333

3434
- name: Build packages
3535
run: yarn build

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
${{ runner.os }}-yarn
3434
3535
- name: Install Dependencies
36-
run: yarn install --frozen-lockfile && yarn bootstrap
36+
run: yarn install --immutable && yarn bootstrap
3737

3838
- name: Setup CI Git User
3939
run: |

.github/workflows/pull_request.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Install Dependencies
4040
if: steps.yarn_cache_id.outputs.cache-hit != 'true' || steps.node_modules_cache_id.outputs.cache-hit != 'true'
41-
run: yarn install --frozen-lockfile
41+
run: yarn install --immutable
4242

4343
- name: Bootstrap lerna
4444
run: yarn bootstrap
@@ -84,7 +84,7 @@ jobs:
8484

8585
- name: Install Dependencies
8686
if: steps.yarn_cache_id.outputs.cache-hit != 'true' || steps.node_modules_cache_id.outputs.cache-hit != 'true'
87-
run: yarn install --frozen-lockfile
87+
run: yarn install --immutable
8888

8989
- name: Bootstrap lerna
9090
run: yarn bootstrap
@@ -130,7 +130,7 @@ jobs:
130130

131131
- name: Install Dependencies
132132
if: steps.yarn_cache_id.outputs.cache-hit != 'true' || steps.node_modules_cache_id.outputs.cache-hit != 'true'
133-
run: yarn install --frozen-lockfile
133+
run: yarn install --immutable
134134

135135
- name: Bootstrap lerna
136136
run: yarn bootstrap
@@ -176,7 +176,7 @@ jobs:
176176

177177
- name: Install Dependencies
178178
if: steps.yarn_cache_id.outputs.cache-hit != 'true' || steps.node_modules_cache_id.outputs.cache-hit != 'true'
179-
run: yarn install --frozen-lockfile
179+
run: yarn install --immutable
180180

181181
- name: Bootstrap lerna
182182
run: yarn bootstrap
@@ -217,7 +217,7 @@ jobs:
217217
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
218218
- name: Install Dependencies
219219
if: steps.yarn_cache_id.outputs.cache-hit != 'true' || steps.node_modules_cache_id.outputs.cache-hit != 'true'
220-
run: yarn install --frozen-lockfile
220+
run: yarn install --immutable
221221
- name: Bootstrap lerna
222222
run: yarn bootstrap
223223
- name: Run DangerJS

.github/workflows/vrt_main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Install Dependencies
4949
if: steps.yarn_cache_id.outputs.cache-hit != 'true' || steps.node_modules_cache_id.outputs.cache-hit != 'true'
50-
run: yarn install --frozen-lockfile && yarn bootstrap
50+
run: yarn install --immutable && yarn bootstrap
5151

5252
- name: Bootstrap lerna
5353
run: yarn bootstrap

.github/workflows/vrt_pull_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Install Dependencies
4646
if: steps.yarn_cache_id.outputs.cache-hit != 'true' || steps.node_modules_cache_id.outputs.cache-hit != 'true'
47-
run: yarn install --frozen-lockfile && yarn bootstrap
47+
run: yarn install --immutable && yarn bootstrap
4848

4949
- name: Bootstrap lerna
5050
run: yarn bootstrap

now-build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
22

3-
yarn --frozen-lockfile
3+
yarn --immutable
44
yarn build
55
yarn build:website

0 commit comments

Comments
 (0)