-
Notifications
You must be signed in to change notification settings - Fork 8
269 lines (261 loc) Β· 8.62 KB
/
ci-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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
name: CI Pull Request
on: pull_request
jobs:
#
# Cancel any workflows that would be duplicated by this run
#
cleanup-runs:
name: Cancel Duplicates
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- uses: rokroskar/workflow-run-cleanup-action@master
env:
GITHUB_TOKEN: "${{ secrets.GH_TOKEN }}"
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/release'"
#
# Build the library
#
library_build:
name: Compile Library
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Check last commit message
id: skip
uses: atlwendy/retrieve-commit-messages-from-pr@v2
- name: Set SHOULD_RUN flag
run: echo ::set-env name=SHOULD_RUN::${{ steps.skip.outputs.shouldRun }}
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12.x
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
if: env.SHOULD_RUN == 'true'
- if: env.SHOULD_RUN == 'true' && steps.cache_node_modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile --non-interactive
- name: Manual build
run: yarn library:build:prod
if: env.SHOULD_RUN == 'true'
- name: Upload built files
uses: actions/upload-artifact@v1
with:
name: built-library
path: dist/library
if: env.SHOULD_RUN == 'true'
#
# Test the library
#
library_test:
name: Test Library
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Check last commit message
id: skip
uses: atlwendy/retrieve-commit-messages-from-pr@v2
- name: Set SHOULD_RUN flag
run: echo ::set-env name=SHOULD_RUN::${{ steps.skip.outputs.shouldRun }}
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12.x
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
if: env.SHOULD_RUN == 'true'
- if: env.SHOULD_RUN == 'true' && steps.cache_node_modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile --non-interactive
- name: Run all tests
run: tooling/ci/test-unit.sh
if: env.SHOULD_RUN == 'true'
- name: Archive code coverage results
uses: actions/upload-artifact@v1
with:
name: code-coverage-report
path: coverage/lcov-report
if: env.SHOULD_RUN == 'true'
#
# Lint all files
#
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Check last commit message
id: skip
uses: atlwendy/retrieve-commit-messages-from-pr@v2
- name: Set SHOULD_RUN flag
run: echo ::set-env name=SHOULD_RUN::${{ steps.skip.outputs.shouldRun }}
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12.x
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
if: env.SHOULD_RUN == 'true'
- if: env.SHOULD_RUN == 'true' && steps.cache_node_modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile --non-interactive
- name: Lint all library files
run: yarn run library:lint & yarn run demo:lint & yarn run vr:lint
if: env.SHOULD_RUN == 'true'
#
# Build the demos
#
demos_build:
name: Compile Demos
needs: library_build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Check last commit message
id: skip
uses: atlwendy/retrieve-commit-messages-from-pr@v2
- name: Set SHOULD_RUN flag
run: echo ::set-env name=SHOULD_RUN::${{ steps.skip.outputs.shouldRun }}
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12.x
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
if: env.SHOULD_RUN == 'true'
- if: env.SHOULD_RUN == 'true' && steps.cache_node_modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile --non-interactive
- name: Download built library
uses: actions/download-artifact@v1
with:
name: built-library
path: dist/library
if: env.SHOULD_RUN == 'true'
- name: Build demos with AoT
run: tooling/ci/build-demos-aot.sh
if: env.SHOULD_RUN == 'true'
- name: Inject new library version
run: tooling/ci/inject-library-version-number.sh
if: env.SHOULD_RUN == 'true'
- name: Upload built files
uses: actions/upload-artifact@v1
with:
name: built-demos
path: dist/demo
if: env.SHOULD_RUN == 'true'
#
# Run integration test
#
integration_test:
name: Run integration test
needs: demos_build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Check last commit message
id: skip
uses: atlwendy/retrieve-commit-messages-from-pr@v2
- name: Set SHOULD_RUN flag
run: echo ::set-env name=SHOULD_RUN::${{ steps.skip.outputs.shouldRun }}
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12.x
if: env.SHOULD_RUN == 'true'
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
if: env.SHOULD_RUN == 'true'
- if: env.SHOULD_RUN == 'true' && steps.cache_node_modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile --non-interactive
- if: env.SHOULD_RUN == 'true'
run: yarn add start-server-and-test
- name: Download built library
uses: actions/download-artifact@v1
with:
name: built-library
path: dist/library
if: env.SHOULD_RUN == 'true'
- name: Download built demo
uses: actions/download-artifact@v1
with:
name: built-demos
path: dist/demo
if: env.SHOULD_RUN == 'true'
- name: Run integration test
run: yarn library:test:integration
if: env.SHOULD_RUN == 'true'
#
# Run regression test
#
regression_test:
name: Run regression test
needs: library_build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Get pusher name
run: echo ::set-env name=author::${{ github.event.pull_request.user.login }}
- name: Check last commit message
id: skip
uses: atlwendy/retrieve-commit-messages-from-pr@master
- name: Set SHOULD_RUN flag
run: echo ::set-env name=SHOULD_RUN::${{ steps.skip.outputs.shouldRun }}
if: "! contains(env.author, 'renovate')"
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12.x
if: env.SHOULD_RUN == 'true'
- if: env.SHOULD_RUN == 'true'
run: yarn add start-server-and-test
- name: Cache node_modules
id: cache_node_modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
if: env.SHOULD_RUN == 'true'
- if: env.SHOULD_RUN == 'true' && steps.cache_node_modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile --non-interactive
- name: Download built library
uses: actions/download-artifact@v1
with:
name: built-library
path: dist/library
if: env.SHOULD_RUN == 'true'
- name: Run regression test
uses: percy/exec-action@v0.3.0
with:
custom-command: yarn run vr:test:regression
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
if: env.SHOULD_RUN == 'true'