-
Notifications
You must be signed in to change notification settings - Fork 118
98 lines (87 loc) · 2.31 KB
/
main.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: Main
on:
pull_request:
branches:
- master
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
ACTIONS_RUNNER_DEBUG: true # Enable debug logs
jobs:
cache-node-modules:
name: Cache node_modules
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/install-dependencies
with:
lookup-only: true
code-quality:
name: Code Quality
runs-on: ubuntu-22.04
needs: [cache-node-modules]
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/install-dependencies
- name: Lint Android files
run: yarn lint:android
- name: Types check
run: yarn ts
- name: Lib build
run: yarn build
- name: Lint files
run: yarn lint
# required to run after `yarn build`
build-android:
name: Build Android
runs-on: ubuntu-22.04
strategy:
fail-fast: false
max-parallel: 4
matrix:
new_arch_enabled: [ 1, 0 ]
rn_ver: [ latest ] # also, can be any npm tag: 0.71-stable, next, nightly
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/build-app
with:
arch: arm64-v8a
new-arch-enabled: ${{ matrix.new_arch_enabled }}
rn-ver: ${{ matrix.rn_ver }}
module-to-install: ${{ github.workspace }}
store-artifacts: true
platform: android
build-ios:
name: Build iOS
runs-on: macos-14
strategy:
fail-fast: false
max-parallel: 3
matrix:
new_arch_enabled: [ 1, 0 ]
rn_ver: [ latest ] # also, can be any npm tag: 0.71-stable, next, nightly
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/build-app
with:
new-arch-enabled: ${{ matrix.new_arch_enabled }}
rn-ver: ${{ matrix.rn_ver }}
module-to-install: ${{ github.workspace }}
store-artifacts: true
platform: ios