-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
61 lines (57 loc) · 2.3 KB
/
monorepo-app-reanimated-build-check-nightly.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
name: Monorepo app Reanimated build check [Nightly]
on:
pull_request:
paths:
- .github/workflows/monorepo-app-reanimated-build-check-nightly.yml
- .github/workflows/monorepo-app-reanimated-build-check-action.yml
- RNReanimated.podspec
- packages/react-native-reanimated/scripts/reanimated_utils.rb
- packages/react-native-reanimated/android/build.gradle
merge_group:
branches:
- main
push:
branches:
- main
paths:
- .github/workflows/monorepo-app-reanimated-build-check-nightly.yml
- .github/workflows/monorepo-app-reanimated-build-check-action.yml
- packages/react-native-reanimated/RNReanimated.podspec
- packages/react-native-reanimated/scripts/reanimated_utils.rb
- packages/react-native-reanimated/android/build.gradle
schedule:
- cron: '37 19 * * *' # at 21:37 every day
workflow_dispatch:
jobs:
build_android_reanimated_non_hoisted:
if: github.repository == 'software-mansion/react-native-reanimated'
name: Android (non-hoisted Reanimated)
uses: ./.github/workflows/monorepo-app-reanimated-build-check-action.yml
with:
platform: Android
concurrency_group: build_monorepo_android_in_app_reanimated-${{ github.ref }}
is_hoisted: false
build_ios_reanimated_non_hoisted:
if: github.repository == 'software-mansion/react-native-reanimated'
name: iOS (non-hoisted Reanimated)
uses: ./.github/workflows/monorepo-app-reanimated-build-check-action.yml
with:
platform: iOS
concurrency_group: build_monorepo_ios_in_app_reanimated-${{ github.ref }}
is_hoisted: false
build_android_reanimated_hoisted:
if: github.repository == 'software-mansion/react-native-reanimated'
name: Android (hoisted Reanimated)
uses: ./.github/workflows/monorepo-app-reanimated-build-check-action.yml
with:
platform: Android
concurrency_group: build_monorepo_android_reanimated_hoisted-${{ github.ref }}
is_hoisted: true
build_ios_reanimated_hoisted:
if: github.repository == 'software-mansion/react-native-reanimated'
name: iOS (hoisted Reanimated)
uses: ./.github/workflows/monorepo-app-reanimated-build-check-action.yml
with:
platform: iOS
concurrency_group: build_monorepo_ios_reanimated_hoisted-${{ github.ref }}
is_hoisted: true