-
Notifications
You must be signed in to change notification settings - Fork 5
43 lines (36 loc) · 1.04 KB
/
test-e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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