generated from qiwi/blank-ts-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 2
296 lines (250 loc) · 8.61 KB
/
ci.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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
# 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-22.04
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') }}-${{ hashFiles('packages/*/src/**/*') }}-${{ hashFiles('packages/*/*.json') }}"
build:
name: build
needs: init
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: 20.5.0
- name: Download artifact
uses: qiwi-forks/action-download-artifact@v2
with:
name: artifact-${{ needs.init.outputs.checksum }}
workflow: 'ci.yml'
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 deps
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
run: yarn
- name: Install packasso
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
run: npx packasso install
- name: Build
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
run: |
npx packasso build
tar -cvf artifact.tar packages/*/target package.json
- 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-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: 20.5.0
- 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.yml'
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 deps
run: yarn
- name: Install packasso
run: npx packasso install
- name: Linter
run: npx packasso lint
- name: Tests
run: PACKASSO=node_test npx packasso test
- name: Cache coverage
if: github.ref == 'refs/heads/master'
id: cache-coverage
uses: actions/cache@v3
with:
path: |
target/coverage
package.json
key: coverage-${{ needs.init.outputs.checksum }}
test_pr:
if: github.event_name == 'pull_request'
needs: [build, init]
strategy:
matrix:
os: [ ubuntu-22.04 ]
node-version: [ 20.5.0 ]
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:
cache: npm
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.yml'
workflow_conclusion: false
search_artifacts: true
search_depth: 10
- name: Unpack artifact
run: tar -xvf artifact.tar
- name: Install deps
run: yarn
- name: Install packasso
run: npx packasso install
- name: Unit test only
# if: matrix.node-version != '20.5.0' || matrix.os != 'ubuntu-22.04'
run: PACKASSO=node_test npx packasso test
# - name: Full test with report
# if: matrix.node-version == '20.5.0' && matrix.os == 'ubuntu-22.04'
# run: yarn test:report
release:
name: Release
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
needs: [test_push, init]
runs-on: ubuntu-22.04
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.yml'
workflow_conclusion: false
search_artifacts: true
search_depth: 10
- name: Restore coverage
uses: actions/cache@v3
with:
path: |
target/coverage
package.json
key: coverage-${{ needs.init.outputs.checksum }}
- name: Unpack artifact
run: tar -xvf artifact.tar
- uses: actions/setup-node@v3
with:
cache: npm
node-version: 20.5.0
- name: Codeclimate
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: target/coverage/lcov.info: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: 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: '@qiwibot'
GIT_COMMITTER_NAME: '@qiwibot'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
run: npx packasso release