From d629670225a4c773c64290b78161810982b4d9ef Mon Sep 17 00:00:00 2001 From: Corey Rice Date: Mon, 5 Sep 2022 17:51:02 -0300 Subject: [PATCH] enable immutable installs in ci --- .github/workflows/ci.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 90cc3190..f9cbd8f5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,13 +15,15 @@ jobs: cache: "yarn" - name: Install deps - run: yarn + # enabeling updating the lock file for a bug in yarn berry likely related to installing github + run: YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn - name: Lint run: yarn lint - name: pretty run: yarn pretty + test: runs-on: ubuntu-20.04 steps: @@ -34,7 +36,8 @@ jobs: cache: "yarn" - name: Install deps - run: yarn + # enabeling updating the lock file for a bug in yarn berry likely related to installing github + run: YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn - name: Prepare local run: yarn prepare:local