Skip to content

Commit 4627bed

Browse files
remove deprecated --frozen-lockfile from CI (#4201)
Flag is deprecated and redundant per the [migration guide](https://yarnpkg.com/migration/guide#migration-steps).
1 parent 4740436 commit 4627bed

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/main-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
path: |
3232
~/.cache/Cypress
3333
key: cypress-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
34-
- run: yarn install --frozen-lockfile --immutable
34+
- run: yarn install --immutable
3535

3636
jest:
3737
name: Jest Unit Tests

.github/workflows/pr-graphql-compat-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Force GraphQL ${{ matrix.release }} solution
4747
run: yarn repo:resolve graphql@${{ matrix.release }}
4848

49-
- run: yarn install --frozen-lockfile --immutable
49+
- run: yarn install --immutable
5050

5151
- name: Unit Tests
5252
run: yarn test:ci

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
path: |
3232
~/.cache/Cypress
3333
key: cypress-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
34-
- run: yarn install --frozen-lockfile --immutable
34+
- run: yarn install --immutable
3535

3636
build:
3737
name: Build
@@ -292,7 +292,7 @@ jobs:
292292
path: |
293293
**/node_modules
294294
key: modules-${{ github.sha }}
295-
- run: yarn install --frozen-lockfile --immutable
295+
- run: yarn install --immutable
296296
- name: License Check
297297
run: yarn license-check
298298

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
path: node_modules
3232
key: node_modules-${{hashFiles('yarn.lock')}}
3333
restore-keys: node_modules-
34-
- run: yarn install --frozen-lockfile --immutable
34+
- run: yarn install --immutable
3535
- name: Create Release Pull Request or Publish to npm
3636
id: changesets
3737
uses: changesets/action@v1

0 commit comments

Comments
 (0)