Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

Add YARN_ENABLE_IMMUTABLE_INSTALLS=false for dependabot fix #1126

Merged
merged 1 commit into from
Jun 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/dependabot-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ jobs:
restore-keys: ${{ runner.os }}-yarn-

- run: yarn install --skip-builds
env:
# yarn runs in immutable mode "by default" in CI -- turning this off requires an
# undocumented env var
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- run: yarn dedupe

Expand Down