Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/e2e-react-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion examples/react-native/tests/test-suite-all-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/react-native/tests/test-suite-ios-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading