chore: Move E2E tests to Maestro #997
This file contains 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: Test iOS e2e | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/ios-e2e-test.yml' | |
- 'RNScreens.podspec' | |
- 'package.json' | |
- 'ios/**' | |
- 'common/**' | |
- 'Example/**' | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: macos-12 | |
timeout-minutes: 60 | |
env: | |
WORKING_DIRECTORY: Example | |
concurrency: | |
group: ios-e2e-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: Get Xcode version | |
run: xcodebuild -version | |
- name: Install AppleSimulatorUtils | |
run: brew tap wix/brew && brew install applesimutils | |
- name: Install root node dependencies | |
run: yarn | |
- name: Install node dependencies | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
run: yarn | |
- name: Install Facebook IDB tool | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
run: yarn prepare-e2e-ios | |
- name: Install pods | |
working-directory: ${{ env.WORKING_DIRECTORY }}/ios | |
run: pod install | |
- name: Install Maestro CLI | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
run: yarn install-e2e | |
- name: Run emulator and tests | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
run: yarn test-e2e-ios | |
- uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: ios-fail-screen-shoots | |
path: ${{ env.WORKING_DIRECTORY }}/artifacts |