-
Notifications
You must be signed in to change notification settings - Fork 2
447 lines (351 loc) · 12.6 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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
name: CI
on:
push:
paths-ignore:
- 'deployment/**'
- 'docker/**'
- 'apps/docs/**'
pull_request:
branches: [main]
paths-ignore:
- 'deployment/**'
- 'docker/**'
- 'apps/docs/**'
permissions:
contents: read
env:
DB_TEST_SYSTEM_DATABASE: it24_system_test
DB_TEST_SYSTEM_USERNAME: it24
DB_TEST_SYSTEM_PASSWORD: Intake24!
DB_TEST_FOODS_DATABASE: it24_foods_test
DB_TEST_FOODS_USERNAME: it24
DB_TEST_FOODS_PASSWORD: Intake24!
jobs:
lint:
name: Lint code
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Repository checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
# API
api-postgres:
name: API (Node.js ${{ matrix.node-version }}, Postgres ${{ matrix.postgres-version }}, Redis ${{ matrix.redis-version }})
runs-on: ubuntu-latest
needs: lint
env:
DB_TEST_SYSTEM_DRIVER: postgres
DB_TEST_SYSTEM_HOST: localhost
DB_TEST_SYSTEM_PORT: 5432
DB_TEST_FOODS_DRIVER: postgres
DB_TEST_FOODS_HOST: localhost
DB_TEST_FOODS_PORT: 5432
strategy:
matrix:
node-version: [22.x]
postgres-version: [15]
redis-version: [7]
services:
postgres:
image: postgres:${{ matrix.postgres-version }}
env:
POSTGRES_USER: it24
POSTGRES_PASSWORD: Intake24!
POSTGRES_DB: it24
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis:${{ matrix.redis-version }}
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- name: Repository checkout
uses: actions/checkout@v4
- name: Create foods/system databases
run: |
PGPASSWORD=${{ env.DB_TEST_FOODS_PASSWORD }} psql -h ${{ env.DB_TEST_FOODS_HOST }} -p 5432 -U ${{ env.DB_TEST_FOODS_USERNAME }} -c 'CREATE DATABASE ${{ env.DB_TEST_FOODS_DATABASE }};'
PGPASSWORD=${{ env.DB_TEST_SYSTEM_PASSWORD }} psql -h ${{ env.DB_TEST_SYSTEM_HOST }} -p 5432 -U ${{ env.DB_TEST_SYSTEM_USERNAME }} -c 'CREATE DATABASE ${{ env.DB_TEST_SYSTEM_DATABASE }};'
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: API - use Github test environment file to build the workers with
working-directory: apps/api
run: cp __tests__/.env-test-gh .env
- name: API - build for tests
working-directory: apps/api
run: pnpm test:build
- name: API - use Github test environment file
working-directory: apps/api
run: cp ./__tests__/.env-test-gh ./__tests__/.env-test
- name: Repo - unit tests
run: pnpm test:unit
- name: API - integration tests
working-directory: apps/api
run: pnpm test:integration
# api-mariadb:
# name: API (Node.js ${{ matrix.node-version }}, MariaDB ${{ matrix.mariadb-version }}, Redis ${{ matrix.redis-version }})
# runs-on: ubuntu-latest
# needs: lint
# env:
# DB_TEST_SYSTEM_DRIVER: mariadb
# DB_TEST_SYSTEM_HOST: 127.0.0.1
# DB_TEST_SYSTEM_PORT: 3306
# DB_TEST_FOODS_DRIVER: mariadb
# DB_TEST_FOODS_HOST: 127.0.0.1
# DB_TEST_FOODS_PORT: 3306
# strategy:
# matrix:
# node-version: [22.x]
# mariadb-version: [10]
# redis-version: [7]
# services:
# mariadb:
# image: mariadb:${{ matrix.mariadb-version }}
# env:
# MYSQL_USER: it24
# MYSQL_PASSWORD: Intake24!
# MYSQL_DATABASE: it24
# MYSQL_ROOT_PASSWORD: Intake24!
# options: >-
# --health-cmd "mysqladmin ping"
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
# ports:
# - 3306:3306
# redis:
# image: redis:${{ matrix.redis-version }}
# options: >-
# --health-cmd "redis-cli ping"
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
# ports:
# - 6379:6379
# steps:
# - name: Repository checkout
# uses: actions/checkout@v4
# - name: Create foods/system databases
# run: |
# mysql --host 127.0.0.1 --port 3306 -uroot -pIntake24! -e "CREATE DATABASE ${{ env.DB_TEST_FOODS_DATABASE }} CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;"
# mysql --host 127.0.0.1 --port 3306 -uroot -pIntake24! -e "CREATE DATABASE ${{ env.DB_TEST_SYSTEM_DATABASE }} CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;"
# mysql --host 127.0.0.1 --port 3306 -uroot -pIntake24! -e "GRANT ALL ON *.* TO 'it24'@'%' with grant option; FLUSH PRIVILEGES;"
# - name: Install pnpm
# uses: pnpm/action-setup@v3
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v3.4.1
# with:
# node-version: ${{ matrix.node-version }}
# cache: 'pnpm'
# - name: Install dependencies
# run: pnpm install
# - name: API - build
# working-directory: apps/api
# run: pnpm build
# - name: API - use Github test environment file
# working-directory: apps/api
# run: cp ./__tests__/.env-test-gh ./__tests__/.env-test
# - name: Repo - unit tests
# run: pnpm test:unit
# - name: Repo - integration tests
# run: pnpm test:integration
# api-mssql:
# name: API (Node.js ${{ matrix.node-version }}, MSSQL ${{ matrix.mssql-version }}, Redis ${{ matrix.redis-version }})
# runs-on: ubuntu-latest
# needs: lint
# env:
# DB_TEST_SYSTEM_DRIVER: mssql
# DB_TEST_SYSTEM_HOST: localhost
# DB_TEST_SYSTEM_PORT: 1433
# DB_TEST_FOODS_DRIVER: mssql
# DB_TEST_FOODS_HOST: localhost
# DB_TEST_FOODS_PORT: 1433
# strategy:
# matrix:
# node-version: [22.x]
# mssql-version: [2019]
# redis-version: [7]
# services:
# mssql:
# image: mcr.microsoft.com/mssql/server:${{ matrix.mssql-version }}-latest
# env:
# ACCEPT_EULA: Y
# SA_PASSWORD: Intake24!
# ports:
# - 1433:1433
# options: >-
# --health-cmd="/opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P \"Intake24!\" -l 30 -Q \"SELECT 1\""
# --health-start-period 10s
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
# redis:
# image: redis:${{ matrix.redis-version }}
# options: >-
# --health-cmd "redis-cli ping"
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
# ports:
# - 6379:6379
# steps:
# - name: Repository checkout
# uses: actions/checkout@v4
# - name: Create foods/system databases
# run: |
# /opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P "Intake24!" -Q "CREATE DATABASE ${{ env.DB_TEST_FOODS_DATABASE }}; ALTER DATABASE ${{ env.DB_TEST_FOODS_DATABASE }} SET READ_COMMITTED_SNAPSHOT ON;"
# /opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P "Intake24!" -Q "CREATE DATABASE ${{ env.DB_TEST_SYSTEM_DATABASE }}; ALTER DATABASE ${{ env.DB_TEST_SYSTEM_DATABASE }} SET READ_COMMITTED_SNAPSHOT ON;"
# /opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P "Intake24!" -Q "CREATE LOGIN ${{ env.DB_TEST_SYSTEM_USERNAME }} WITH PASSWORD = '${{ env.DB_TEST_SYSTEM_PASSWORD }}';"
# /opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P "Intake24!" -Q "USE ${{ env.DB_TEST_SYSTEM_DATABASE }}; CREATE USER ${{ env.DB_TEST_SYSTEM_USERNAME }} FOR LOGIN ${{ env.DB_TEST_SYSTEM_USERNAME }};"
# /opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P "Intake24!" -Q "USE ${{ env.DB_TEST_SYSTEM_DATABASE }}; EXEC sp_addrolemember N'db_owner', N'${{ env.DB_TEST_SYSTEM_USERNAME }}';"
# /opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P "Intake24!" -Q "USE ${{ env.DB_TEST_FOODS_DATABASE }}; CREATE USER ${{ env.DB_TEST_FOODS_USERNAME }} FOR LOGIN ${{ env.DB_TEST_FOODS_USERNAME }};"
# /opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P "Intake24!" -Q "USE ${{ env.DB_TEST_FOODS_DATABASE }}; EXEC sp_addrolemember N'db_owner', N'${{ env.DB_TEST_FOODS_USERNAME }}';"
# - name: Install pnpm
# uses: pnpm/action-setup@v3
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v3.4.1
# with:
# node-version: ${{ matrix.node-version }}
# cache: 'pnpm'
# - name: Install dependencies
# run: pnpm install
# - name: API - build
# working-directory: apps/api
# run: pnpm build
# - name: API - use Github test environment file
# working-directory: apps/api
# run: cp ./__tests__/.env-test-gh ./__tests__/.env-test
# - name: Repo - unit tests
# run: pnpm test:unit
# - name: Repo - integration tests
# run: pnpm test:integration
# Admin client
admin:
name: Admin client (Node.js ${{ matrix.node-version }})
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
node-version: [22.x]
steps:
- name: Repository checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Admin client - build
working-directory: apps/admin
run: pnpm build
# Survey client
survey:
name: Survey client (Node.js ${{ matrix.node-version }})
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
node-version: [22.x]
steps:
- name: Repository checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
# - name: Survey client - type check
# working-directory: apps/survey
# run: pnpm type-check
- name: Survey client - build
working-directory: apps/survey
run: pnpm build
# Portal
portal:
name: Portal (Node.js ${{ matrix.node-version }})
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
node-version: [22.x]
steps:
- name: Repository checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Portal - build
working-directory: apps/portal
run: pnpm build
- name: Portal - use Github test environment file
working-directory: apps/portal
run: cp ./__tests__/.env-test-gh ./__tests__/.env-test
- name: Portal - integration tests
working-directory: apps/portal
run: pnpm test:integration
# CLI
cli:
name: CLI (Node.js ${{ matrix.node-version }})
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
node-version: [22.x]
steps:
- name: Repository checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: CLI - build
working-directory: apps/cli
run: pnpm build