From 70bb42ded74a4c301a1e44de6c19a57f61916790 Mon Sep 17 00:00:00 2001 From: Vojtech Novak Date: Wed, 29 Jan 2025 19:37:42 +0100 Subject: [PATCH] chore: yarn immutable --- .github/workflows/android.yml | 4 ++-- .github/workflows/deploy-docs.yml | 4 ++-- .github/workflows/ios.yml | 4 ++-- .github/workflows/nodejs.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 4a19fac3..a0782a5d 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -26,7 +26,7 @@ jobs: distribution: 'temurin' java-version: '17' - name: Install dependencies - run: yarn install + run: yarn install --immutable - name: Build android example app on old architecture run: ./gradlew app:assembleDebug -PnewArchEnabled=false working-directory: packages/example/android @@ -43,7 +43,7 @@ jobs: distribution: 'temurin' java-version: '17' - name: Install dependencies - run: yarn install + run: yarn install --immutable - name: Build android example app on new architecture run: ./gradlew app:assembleDebug -PnewArchEnabled=true working-directory: packages/example/android diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 1f1629df..564746e0 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -31,7 +31,7 @@ jobs: cache: yarn - name: Install dependencies and build website run: | - yarn install + yarn install --immutable yarn build deploy: if: github.event_name != 'pull_request' @@ -53,5 +53,5 @@ jobs: run: | git config --global user.email "vonovak@gmail.com" git config --global user.name "Vojtech Novak" - yarn install + yarn install --immutable yarn deploy diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 07540e7f..8b782609 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -27,7 +27,7 @@ jobs: working-directory: packages/example/ios bundler-cache: true - name: Install dependencies - run: yarn install + run: yarn install --immutable - name: Install pods run: RCT_NEW_ARCH_ENABLED=0 npx pod-install working-directory: packages/example/ios @@ -48,7 +48,7 @@ jobs: working-directory: packages/example/ios bundler-cache: true - name: Install dependencies - run: yarn install + run: yarn install --immutable - name: Install pods for new arch run: RCT_NEW_ARCH_ENABLED=1 npx pod-install working-directory: packages/example/ios diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index cae6177c..3d0fe1c3 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: lts/* - - run: yarn install + - run: yarn install --immutable - run: yarn typescript - run: yarn prettier:check - run: yarn lint @@ -41,7 +41,7 @@ jobs: node-version: lts/* cache: 'yarn' - name: Install Dependencies - run: yarn install + run: yarn install --immutable - name: Create Release Pull Request or Publish id: changesets