Skip to content

Commit

Permalink
Temporarily allow lockfile changes
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Dec 16, 2024
1 parent 7295655 commit 4b0590c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test-codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ jobs:

- name: Install dependencies
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Pack
run: yarn pack
Expand Down Expand Up @@ -101,6 +103,8 @@ jobs:

- name: Install dependencies
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Install build artifact
run: yarn add ./package.tgz
Expand Down Expand Up @@ -138,6 +142,8 @@ jobs:

- name: Install deps
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Download artifact
id: download-artifact
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ jobs:

- name: Install deps
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

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

- name: Install deps
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Download build artifact
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -158,6 +162,8 @@ jobs:

- name: Install deps
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Install React ${{ matrix.react.version }} and React-DOM ${{ matrix.react.react-dom.version }}
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 }}
Expand Down Expand Up @@ -223,6 +229,8 @@ jobs:

- name: Install deps
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Remove existing RTK
run: yarn remove @reduxjs/toolkit
Expand Down Expand Up @@ -277,6 +285,8 @@ jobs:

- name: Install deps
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -316,6 +326,8 @@ jobs:

- name: Install deps
run: yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- uses: actions/download-artifact@v4
with:
Expand Down
1 change: 1 addition & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ NODE_VERSION = "20"
NODE_OPTIONS = "--max_old_space_size=4096"
NETLIFY_USE_YARN = "true"
YARN_VERSION = "1.22.10"
YARN_ENABLE_IMMUTABLE_INSTALLS = "false"

[[plugins]]
package = "netlify-plugin-cache"
Expand Down

0 comments on commit 4b0590c

Please sign in to comment.