File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
packages/create-react-native-library/templates/common/$.github/workflows Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 13
13
jobs :
14
14
lint :
15
15
runs-on : ubuntu-latest
16
+
16
17
steps :
17
18
- name : Checkout
18
19
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28
29
29
30
test :
30
31
runs-on : ubuntu-latest
32
+
31
33
steps :
32
34
- name : Checkout
33
35
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
40
42
41
43
build-library :
42
44
runs-on : ubuntu-latest
45
+
43
46
steps :
44
47
- name : Checkout
45
48
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
52
55
53
56
<% if (project.native) { - % >
54
57
build-android :
58
+ concurrency :
59
+ group : ${{ github.workflow }}-${{ github.ref }}
60
+ cancel-in-progress : true
61
+
55
62
runs-on : ubuntu-latest
63
+
56
64
env :
57
65
TURBO_CACHE_DIR : .turbo/android
66
+
58
67
steps :
59
68
- name : Checkout
60
69
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -113,10 +122,16 @@ jobs:
113
122
yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}"
114
123
115
124
build-ios :
125
+ concurrency :
126
+ group : ${{ github.workflow }}-${{ github.ref }}
127
+ cancel-in-progress : true
128
+
116
129
runs-on : macos-latest
130
+
117
131
env :
118
132
XCODE_VERSION : 16.2
119
133
TURBO_CACHE_DIR : .turbo/ios
134
+
120
135
steps :
121
136
- name : Checkout
122
137
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -165,6 +180,7 @@ jobs:
165
180
<% } else { - % >
166
181
build-web :
167
182
runs-on : ubuntu-latest
183
+
168
184
steps :
169
185
- name : Checkout
170
186
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
You can’t perform that action at this time.
0 commit comments