-
Notifications
You must be signed in to change notification settings - Fork 28
290 lines (245 loc) · 8.62 KB
/
ci.yaml
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# This is a Github Workflow that runs tests on any push or pull request.
# If the tests pass and this is a push to the master branch it also runs Semantic Release.
name: CI
on: [ push, pull_request ]
jobs:
init:
name: init
runs-on: ubuntu-latest
outputs:
yarn-cache-dir: ${{ steps.yarn-cache-dir-path.outputs.dir }}
checksum: ${{ steps.checksum.outputs.checksum }}
steps:
- uses: actions/checkout@v3
- name: Get yarn cache dir
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: Get src checksum
id: checksum
run: echo "::set-output name=checksum::${{ hashFiles('yarn.lock', '*.json', 'packages/*/*.json', 'packages/*/src/main/ts/**/*', 'packages/*/src/main/webapp/**/*') }}"
build:
name: build
needs: init
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Download artifact
uses: qiwi-forks/action-download-artifact@v2
with:
name: artifact-${{ needs.init.outputs.checksum }}
workflow: 'ci.yaml'
workflow_conclusion: false
nothrow: true
search_artifacts: true
search_depth: 10
- name: Check artifact
if: always()
id: check-artifact
run: echo "::set-output name=exists::$([ -e "artifact.tar" ] && echo true || echo false)"
- uses: actions/cache@v3
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
id: yarn-cache
with:
path: ${{ needs.init.outputs.yarn-cache-dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
run: yarn
- name: Build
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
run: |
yarn build
tar -cvf artifact.tar package.json packages/*/target
- name: Save artifact
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
uses: actions/upload-artifact@v3
with:
name: artifact-${{ needs.init.outputs.checksum }}
retention-days: 30
path: artifact.tar
# https://github.com/actions/upload-artifact/issues/53
- name: Cache artifact
uses: actions/cache@v3
id: artifact
with:
path: artifact.tar
key: artifact-${{ needs.init.outputs.checksum }}
test_push:
needs: [ build, init ]
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Restore artifact from cache (if exists)
uses: actions/cache@v3
with:
path: artifact.tar
key: artifact-${{ needs.init.outputs.checksum }}
- name: Check artifact
if: always()
id: check-artifact
run: echo "::set-output name=exists::$([ -e "artifact.tar" ] && echo true || echo false)"
- name: Download artifact
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
uses: qiwi-forks/action-download-artifact@v2
with:
name: artifact-${{ needs.init.outputs.checksum }}
workflow: 'ci.yaml'
workflow_conclusion: false
search_artifacts: true
search_depth: 10
- name: Unpack artifact
run: tar -xvf artifact.tar
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ needs.init.outputs.yarn-cache-dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install
run: yarn
- name: Lint
run: yarn lint
# - name: Push coverage
# if: github.ref == 'refs/heads/master'
# uses: actions/upload-artifact@v3
# with:
# name: artifact-${{ needs.init.outputs.checksum }}
# retention-days: 1
# path: coverage
test_pr:
if: github.event_name == 'pull_request'
needs: [ build, init ]
strategy:
matrix:
os: [ ubuntu-latest ]
node-version: [ 16, 18, 20 ]
name: Test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ needs.init.outputs.yarn-cache-dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Restore artifact from cache (if exists)
uses: actions/cache@v3
with:
path: artifact.tar
key: artifact-${{ needs.init.outputs.checksum }}
- name: Check artifact
if: always()
id: check-artifact
run: echo "::set-output name=exists::$([ -e "artifact.tar" ] && echo true || echo false)"
- name: Download artifact
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
uses: qiwi-forks/action-download-artifact@v2
with:
name: artifact-${{ needs.init.outputs.checksum }}
workflow: 'ci.yaml'
workflow_conclusion: false
search_artifacts: true
search_depth: 10
- name: Unpack artifact
run: tar -xvf artifact.tar
- name: Install
run: yarn
- name: Docker pull
if: matrix.node-version == '16'
run: |
docker pull browserless/chrome@sha256:4655517b70d598367f363e15fa311ea514879f6b4908ba9199d6714d6f8269a3
docker pull nginx@sha256:480868e8c8c797794257e2abd88d0f9a8809b2fe956cbfbc05dcc0bca1f7cd43
- name: Lint
if: matrix.node-version == '18'
run: yarn lint
- name: Visual tests
if: matrix.node-version == '16'
run: yarn test
- name: Save failure results
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: screenshots-${{ needs.init.outputs.checksum }}
retention-days: 1
path: |
packages/*/src/main/resources/screenshots/*.new.png
packages/*/src/main/resources/screenshots/*.diff.png
release:
name: Release
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
needs: [ test_push, init ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: master
- name: Restore artifact from cache (if exists)
uses: actions/cache@v3
with:
path: artifact.tar
key: artifact-${{ needs.init.outputs.checksum }}
- name: Check artifact
if: always()
id: check-artifact
run: echo "::set-output name=exists::$([ -e "artifact.tar" ] && echo true || echo false)"
- name: Download artifact
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
uses: qiwi-forks/action-download-artifact@v2
with:
name: artifact-${{ needs.init.outputs.checksum }}
workflow: 'ci.yaml'
workflow_conclusion: false
search_artifacts: true
search_depth: 10
- name: Unpack artifact
run: tar -xvf artifact.tar
- uses: actions/setup-node@v3
with:
node-version: 16
# - name: Codeclimate
# uses: paambaati/[email protected]
# env:
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
# with:
# coverageLocations: |
# ${{github.workspace}}/coverage/*.lcov:lcov
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ needs.init.outputs.yarn-cache-dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install
run: yarn
- name: Release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_USER: 'qiwibot'
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_AUTHOR_EMAIL: '[email protected]'
GIT_COMMITTER_EMAIL: '[email protected]'
GIT_AUTHOR_NAME: 'QIWI Bot'
GIT_COMMITTER_NAME: 'QIWI Bot'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
run: npm_config_yes=true npx zx-bulk-release