Skip to content

Commit 166cfa7

Browse files
committed
Temporarily allow lockfile changes
1 parent 7295655 commit 166cfa7

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.github/workflows/test-codegen.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ jobs:
5454

5555
- name: Install dependencies
5656
run: yarn install
57+
env:
58+
YARN_ENABLE_IMMUTABLE_INSTALLS: false
5759

5860
- name: Pack
5961
run: yarn pack
@@ -101,6 +103,8 @@ jobs:
101103

102104
- name: Install dependencies
103105
run: yarn install
106+
env:
107+
YARN_ENABLE_IMMUTABLE_INSTALLS: false
104108

105109
- name: Install build artifact
106110
run: yarn add ./package.tgz
@@ -138,6 +142,8 @@ jobs:
138142

139143
- name: Install deps
140144
run: yarn install
145+
env:
146+
YARN_ENABLE_IMMUTABLE_INSTALLS: false
141147

142148
- name: Download artifact
143149
id: download-artifact

.github/workflows/tests.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ jobs:
4545

4646
- name: Install deps
4747
run: yarn install
48+
env:
49+
YARN_ENABLE_IMMUTABLE_INSTALLS: false
4850

4951
# Read existing version, reuse that, add a Git short hash
5052
- name: Set build version to Git commit
@@ -95,6 +97,8 @@ jobs:
9597

9698
- name: Install deps
9799
run: yarn install
100+
env:
101+
YARN_ENABLE_IMMUTABLE_INSTALLS: false
98102

99103
- name: Download build artifact
100104
uses: actions/download-artifact@v4
@@ -158,6 +162,8 @@ jobs:
158162

159163
- name: Install deps
160164
run: yarn install
165+
env:
166+
YARN_ENABLE_IMMUTABLE_INSTALLS: false
161167

162168
- name: Install React ${{ matrix.react.version }} and React-DOM ${{ matrix.react.react-dom.version }}
163169
run: yarn up react@${{ matrix.react.version }} react-dom@${{ matrix.react.react-dom.version }} @types/react@${{ matrix.react.types }} @types/react-dom@${{ matrix.react.react-dom.types }}
@@ -223,6 +229,8 @@ jobs:
223229

224230
- name: Install deps
225231
run: yarn install
232+
env:
233+
YARN_ENABLE_IMMUTABLE_INSTALLS: false
226234

227235
- name: Remove existing RTK
228236
run: yarn remove @reduxjs/toolkit
@@ -277,6 +285,8 @@ jobs:
277285

278286
- name: Install deps
279287
run: yarn install
288+
env:
289+
YARN_ENABLE_IMMUTABLE_INSTALLS: false
280290

281291
- uses: actions/download-artifact@v4
282292
with:
@@ -316,6 +326,8 @@ jobs:
316326

317327
- name: Install deps
318328
run: yarn install
329+
env:
330+
YARN_ENABLE_IMMUTABLE_INSTALLS: false
319331

320332
- uses: actions/download-artifact@v4
321333
with:

netlify.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ NODE_OPTIONS = "--max_old_space_size=4096"
1010
NETLIFY_USE_YARN = "true"
1111
YARN_VERSION = "1.22.10"
1212

13+
YARN_ENABLE_IMMUTABLE_INSTALLS = false
14+
1315
[[plugins]]
1416
package = "netlify-plugin-cache"
1517
[plugins.inputs]

0 commit comments

Comments
 (0)