-
-
Notifications
You must be signed in to change notification settings - Fork 530
64 lines (64 loc) · 1.73 KB
/
android-e2e-test.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Test Android e2e
on:
pull_request:
paths:
- '.github/workflows/android-e2e-test.yml'
- 'package.json'
- 'android/**'
- 'common/**'
- 'Example/**'
push:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: macos-12
timeout-minutes: 60
env:
WORKING_DIRECTORY: Example
concurrency:
group: android-e2e-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
cache: 'gradle'
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install root node dependencies
run: yarn install
- name: Install node dependencies
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn install
- name: Install Maestro CLI
working-directory: ${{ env.WORKING_DIRECTORY }}
run: |
yarn install-e2e
source ~/.bashrc
- name: Run emulator and tests
uses: reactivecircus/[email protected]
with:
working-directory: ${{ env.WORKING_DIRECTORY }}
api-level: 31
target: default
profile: pixel_2
ram-size: '4096M'
disk-size: '10G'
disable-animations: false
avd-name: e2e_emulator
arch: x86_64
script: yarn test-e2e-android
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: android-fail-screen-shoots
path: ${{ env.WORKING_DIRECTORY }}/artifacts