Skip to content

Commit

Permalink
Prefixing mocha-remote with npx + minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kraenhansen committed Jun 23, 2024
1 parent 56a34ec commit 954c576
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr-realm-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -508,13 +508,13 @@ jobs:
- name: CocoaPods cache
uses: actions/cache@v4
with:
key: ${{ github.job }}-cocoapods
path: ${{ env.CP_HOME_DIR }}
key: ${{ github.job }}-cocoapods

- name: Cached React Native Test App CocoaPods
uses: actions/cache@v4
with:
path: 'integration-tests/environments/react-native-test-app/ios/Pods'
path: integration-tests/environments/react-native-test-app/ios/Pods
key: ${{ github.job }}-pods-${{ hashFiles('integration-tests/environments/react-native-test-app/ios/Podfile.lock') }}
restore-keys: |
${{ github.job }}-pods-
Expand Down Expand Up @@ -602,7 +602,7 @@ jobs:
MOCHA_REMOTE_CONTEXT: ${{ steps.mocha-env.outputs.context }}
timeout-minutes: 30
working-directory: integration-tests/environments/react-native-test-app
run: mocha-remote -- concurrently --kill-others-on-fail npm:metro npm:runner
run: npx mocha-remote -- concurrently --kill-others-on-fail npm:metro npm:runner

android-tests:
name: Test Android (React Native)
Expand Down Expand Up @@ -711,5 +711,5 @@ jobs:
ndk: ${{ env.NDK_VERSION }}
cmake: 3.22.1
working-directory: integration-tests/environments/react-native-test-app
script: mocha-remote -- concurrently --kill-others-on-fail npm:metro npm:runner
script: npx mocha-remote -- concurrently --kill-others-on-fail npm:metro npm:runner

0 comments on commit 954c576

Please sign in to comment.