From 83169cc351185ed2ca9b05b0983321f8e85f7b9d Mon Sep 17 00:00:00 2001 From: Antonis Lilis Date: Wed, 9 Oct 2024 15:11:17 +0300 Subject: [PATCH] Enable corepack and remove cache check --- .github/workflows/testflight.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testflight.yml b/.github/workflows/testflight.yml index c6b7601324..4d209241b7 100644 --- a/.github/workflows/testflight.yml +++ b/.github/workflows/testflight.yml @@ -26,6 +26,7 @@ jobs: ruby-version: '3.3.0' # based on what is used in the sample bundler-cache: true # runs 'bundle install' and caches installed gems automatically cache-version: 1 # cache the installed gems + - run: corepack enable - uses: actions/setup-node@v4 with: node-version: 18 @@ -37,7 +38,6 @@ jobs: samples/react-native/node_modules key: ${{ github.workflow }}-${{ github.job }}-${{ hashFiles('yarn.lock', 'samples/react-native/yarn.lock') }} - name: Install Dependencies - if: steps.deps-cache.outputs['cache-hit'] != 'true' run: | yarn install cd samples/react-native && yarn install