switch to npx for detox and install dependecies with brew #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: E2E Test React Native Gesture Handler | |
| on: | |
| pull_request: | |
| paths: | |
| - packages/react-native-gesture-handler/** | |
| push: | |
| branches: | |
| - main | |
| - "@relextm19/e2e" | |
| workflow_dispatch: | |
| jobs: | |
| e2e: | |
| if: github.repository == 'software-mansion/react-native-gesture-handler' | |
| runs-on: macos-14 | |
| env: | |
| WORKING_DIRECTORY: apps/e2eApp | |
| concurrency: | |
| group: e2e-app-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Use node 24 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: yarn | |
| - name: Use latest stable Xcode | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '16.1' | |
| - name: Install dependencies | |
| run: yarn --immutable | |
| - name: Install pods | |
| working-directory: ${{ env.WORKING_DIRECTORY }}/ios | |
| run: pod install | |
| - name : Setup Detox | |
| run: brew tap wix/brew && brew install applesimutils | |
| - name: Build for iOS | |
| working-directory: ${{ env.WORKING_DIRECTORY }} | |
| run: npx detox build --c ios.sim.release | |
| - name: Run tests on iOS | |
| working-directory: ${{ env.WORKING_DIRECTORY }} | |
| run: npx detox test --c ios.sim.release | |
| #tset |