Skip to content

fix: e2e tests path #297

fix: e2e tests path

fix: e2e tests path #297

Workflow file for this run

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 ??