File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed
Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
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 :
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ NODE_VERSION = "20"
99NODE_OPTIONS = " --max_old_space_size=4096"
1010NETLIFY_USE_YARN = " true"
1111YARN_VERSION = " 1.22.10"
12+ YARN_ENABLE_IMMUTABLE_INSTALLS = " false"
1213
1314[[plugins ]]
1415 package = " netlify-plugin-cache"
You can’t perform that action at this time.
0 commit comments