-
-
Notifications
You must be signed in to change notification settings - Fork 345
42 lines (33 loc) · 774 Bytes
/
pr.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
name: PR
on:
workflow_dispatch:
pull_request_target:
jobs:
build-ios:
name: Build
uses: ./.github/workflows/build-ios.yml
build-android:
name: Build
uses: ./.github/workflows/build-android.yml
test-ios-e2e:
name: Test
uses: ./.github/workflows/test-ios-e2e.yml
needs: [build-ios]
secrets: inherit
test-android-e2e:
name: Test
uses: ./.github/workflows/test-android-e2e.yml
needs: [build-android]
secrets: inherit
test-js:
name: Test
uses: ./.github/workflows/test-js.yml
test-android-unit:
name: Test
uses: ./.github/workflows/test-android-unit.yml
lint:
name: Check
uses: ./.github/workflows/lint.yml
typecheck:
name: Check
uses: ./.github/workflows/typecheck.yml