diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 4a19fac..a0782a5 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 1f1629d..564746e 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 07540e7..8b78260 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 cae6177..3d0fe1c 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