diff --git a/.github/workflows/e2e-react-native.yml b/.github/workflows/e2e-react-native.yml index b2c724b..9642045 100644 --- a/.github/workflows/e2e-react-native.yml +++ b/.github/workflows/e2e-react-native.yml @@ -35,6 +35,14 @@ jobs: cache: 'npm' cache-dependency-path: examples/react-native/package-lock.json + - name: Cache node_modules + uses: actions/cache@v5 + with: + path: examples/react-native/node_modules + key: ${{ runner.os }}-node-modules-${{ hashFiles('examples/react-native/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-node-modules- + - name: Enable KVM (Android only) if: matrix.platform == 'android' run: | diff --git a/examples/react-native/tests/test-suite-all-e2e.yaml b/examples/react-native/tests/test-suite-all-e2e.yaml index 7eff4c8..1739d08 100644 --- a/examples/react-native/tests/test-suite-all-e2e.yaml +++ b/examples/react-native/tests/test-suite-all-e2e.yaml @@ -128,7 +128,7 @@ processes: cd ios echo "Installing CocoaPods dependencies..." - pod install --repo-update + pod install echo 'Pod install complete' echo "pass" > "$_step_dir/$_step.status" diff --git a/examples/react-native/tests/test-suite-ios-e2e.yaml b/examples/react-native/tests/test-suite-ios-e2e.yaml index 121b934..1e40b97 100644 --- a/examples/react-native/tests/test-suite-ios-e2e.yaml +++ b/examples/react-native/tests/test-suite-ios-e2e.yaml @@ -80,7 +80,7 @@ processes: cd ios echo "Installing CocoaPods dependencies..." - pod install --repo-update + pod install echo 'Pod install complete' echo "pass" > "$_step_dir/$_step.status"