diff --git a/.github/actions/yarn-nm-install/action.yml b/.github/actions/yarn-nm-install/action.yml index 7218e27ca0..3af601d170 100644 --- a/.github/actions/yarn-nm-install/action.yml +++ b/.github/actions/yarn-nm-install/action.yml @@ -113,7 +113,7 @@ runs: - name: 📥 Install dependencies shell: bash working-directory: ${{ inputs.cwd }} - run: yarn install --immutable --inline-builds + run: YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install --inline-builds env: # Overrides/align yarnrc.yml options (v3, v4) for a CI context YARN_ENABLE_GLOBAL_CACHE: 'false' # Use local cache folder to keep downloaded archives @@ -121,4 +121,4 @@ runs: YARN_NM_MODE: 'hardlinks-local' # Reduce node_modules size YARN_INSTALL_STATE_PATH: '.yarn/ci-cache/install-state.gz' # Might speed up resolution step when node_modules present # Other environment variables - HUSKY: '0' # By default do not run HUSKY install \ No newline at end of file + HUSKY: '0' # By default do not run HUSKY install