feat: send select asset sheet, closes LEA-1643 and LEA-1628 #100
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: | |
- 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 |