Skip to content

feat: send select asset sheet, closes LEA-1643 and LEA-1628 #100

feat: send select asset sheet, closes LEA-1643 and LEA-1628

feat: send select asset sheet, closes LEA-1643 and LEA-1628 #100

Workflow file for this run

name: Test E2E
on:
push:
branches:
- dev
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: 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