fix: e2e tests path #297
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 E2E | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
test-e2e-ios: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare the app | |
uses: ./.github/actions/provision | |
- name: Setup Expo and EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- name: List current directory | |
run: ls -al | |
- name: iOS E2E build on EAS | |
working-directory: ./apps/mobile | |
run: | | |
eas build --profile maestro-test-ios --platform ios --non-interactive | |
test-e2e-android: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare the app | |
uses: ./.github/actions/provision | |
- name: Setup Expo and EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- name: Android E2E build on EAS | |
working-directory: ./apps/mobile | |
run: | | |
eas build --profile maestro-test-android --platform android --non-interactive | |
# CI fails with mono/mono/apps/mobile/.eas/build/common/maestro.yml | |
# but this is not a valid path - it should be .eas/common/maestro.yml ?? |