Skip to content

Commit 4678c82

Browse files
committed
Fix --immutable Yarn Flag
1 parent 0127315 commit 4678c82

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
restore-keys: |
3535
${{ runner.os }}-yarn-
3636
- name: Install Dependencies
37-
run: yarn --immutable
37+
run: yarn --pure-lockfile
3838
- name: Lint Code
3939
run: yarn lint
4040

@@ -91,7 +91,7 @@ jobs:
9191
restore-keys: |
9292
${{ runner.os }}-yarn-
9393
- name: Install Dependencies
94-
run: yarn --immutable
94+
run: yarn --pure-lockfile
9595
- name: Test on Linux System
9696
if: runner.os == 'Linux'
9797
run: xvfb-run -a yarn nx run extension-integrationtest:integrationtest --configuration=test
@@ -124,7 +124,7 @@ jobs:
124124
restore-keys: |
125125
${{ runner.os }}-yarn-
126126
- name: Install Dependencies
127-
run: yarn --immutable
127+
run: yarn --pure-lockfile
128128

129129
- name: Production Build
130130
run: yarn nx run-many --target=build --configuration=prod --projects=extension,runtime-webpack
@@ -173,7 +173,7 @@ jobs:
173173
registry-url: 'https://registry.npmjs.org'
174174

175175
- name: Install Dependencies
176-
run: yarn --immutable
176+
run: yarn --pure-lockfile
177177

178178
- name: Create Production Build
179179
run: yarn nx run-many --target=build --configuration=prod --projects=extension
@@ -207,7 +207,7 @@ jobs:
207207
registry-url: 'https://registry.npmjs.org'
208208

209209
- name: Install Dependencies
210-
run: yarn --immutable
210+
run: yarn --pure-lockfile
211211

212212
- name: Create Production Build
213213
run: yarn nx run-many --target=build --configuration=prod --projects=runtime-webpack

0 commit comments

Comments
 (0)