-
Notifications
You must be signed in to change notification settings - Fork 83
466 lines (395 loc) · 13.7 KB
/
Copy pathci.yml
File metadata and controls
466 lines (395 loc) · 13.7 KB
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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main, dev]
schedule:
- cron: '0 0 * * 0' # Weekly scan on Sunday at 00:00 UTC
jobs:
contract:
name: Rust / Soroban contract
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust + wasm32 target
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-unknown-unknown
- name: Cache cargo registry
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
contracts/target
key: cargo-${{ hashFiles('contracts/Cargo.lock') }}
- name: Build WASM
working-directory: contracts
run: make build
- name: Run contract tests
working-directory: contracts
run: cargo test
- name: Run contract tests with coverage
working-directory: contracts
run: |
cargo install cargo-tarpaulin
make test-coverage
- name: Upload Contract Coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: contracts/tarpaulin-report.xml
flags: contracts
token: ${{ secrets.CODECOV_TOKEN }}
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Dependency audit
working-directory: contracts
run: cargo audit | tee audit-report.txt
- name: Upload audit report
if: always()
uses: actions/upload-artifact@v4
with:
name: contract-audit-report
path: contracts/audit-report.txt
backend:
name: Node.js backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: backend/package-lock.json
- name: Install dependencies
working-directory: backend
run: npm ci
- name: Lint
working-directory: backend
run: npm run lint
- name: Run tests
working-directory: backend
run: npm test
- name: Run tests with coverage
working-directory: backend
run: npm test
- name: Upload Backend Coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: backend/coverage/lcov.info
flags: backend
token: ${{ secrets.CODECOV_TOKEN }}
- name: Dependency audit
working-directory: backend
run: npm audit --audit-level=high | tee audit-report.txt
- name: Upload audit report
if: always()
uses: actions/upload-artifact@v4
with:
name: backend-audit-report
path: backend/audit-report.txt
frontend:
name: Node.js frontend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
working-directory: frontend
run: npm ci
- name: Lint
working-directory: frontend
run: npm run lint
- name: Run tests
working-directory: frontend
run: npm test
- name: Run tests with coverage
working-directory: frontend
run: npm run test:coverage
- name: Upload Frontend Coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: frontend/coverage/lcov.info
flags: frontend
token: ${{ secrets.CODECOV_TOKEN }}
- name: Dependency audit
working-directory: frontend
run: npm audit --audit-level=high | tee audit-report.txt
- name: Upload audit report
if: always()
uses: actions/upload-artifact@v4
with:
name: frontend-audit-report
path: frontend/audit-report.txt
python:
name: Python analytics service
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
cache-dependency-path: python-service/requirements.txt
- name: Install dependencies
working-directory: python-service
run: pip install -r requirements.txt
- name: Lint
working-directory: python-service
run: flake8 .
- name: Run tests
working-directory: python-service
run: pytest
- name: Run tests with coverage
working-directory: python-service
run: pytest --cov --cov-report=xml
- name: Upload Python Coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: python-service/coverage.xml
flags: python
token: ${{ secrets.CODECOV_TOKEN }}
- name: Install pip-audit
run: pip install pip-audit
- name: Dependency audit
working-directory: python-service
run: pip-audit -r requirements.txt | tee audit-report.txt
- name: Upload audit report
if: always()
uses: actions/upload-artifact@v4
with:
name: python-audit-report
path: python-service/audit-report.txt
verify-perf:
name: k6 performance test — verify endpoint
runs-on: ubuntu-latest
needs: backend
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: backend/package-lock.json
- name: Install backend dependencies
working-directory: backend
run: npm ci
- name: Start backend
working-directory: backend
run: node src/app.js &
env:
NODE_ENV: test
PORT: 4000
# Minimal env so config validation passes
STELLAR_NETWORK: testnet
HORIZON_URL: https://horizon-testnet.stellar.org
SOROBAN_RPC_URL: https://soroban-testnet.stellar.org
STELLAR_NETWORK_PASSPHRASE: Test SDF Network ; September 2015
VACCINATIONS_CONTRACT_ID: CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM
ADMIN_SECRET_KEY: SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
ADMIN_PUBLIC_KEY: GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWHF
SEP10_SERVER_KEY: SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB
ISSUER_SECRET_KEY: SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC
JWT_SECRET: ci-test-secret
- name: Wait for backend
run: |
for i in $(seq 1 30); do
curl -sf http://localhost:4000/health && exit 0
sleep 2
done
echo "Backend did not start" && exit 1
- name: Install k6
run: |
sudo gpg --no-default-keyring --keyring /usr/share/keyrings/k6-archive-keyring.gpg \
--keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C5AD17C747E3415A3642D57D77C6C491D6AC1D69
echo "deb [signed-by=/usr/share/keyrings/k6-archive-keyring.gpg] https://dl.k6.io/deb stable main" \
| sudo tee /etc/apt/sources.list.d/k6.list
sudo apt-get update -qq && sudo apt-get install -y k6
- name: Run k6 load test
working-directory: backend
run: |
k6 run \
-e BASE_URL=http://localhost:4000 \
--out json=load-test-results.json \
load-test.js
- name: Upload load test results
if: always()
uses: actions/upload-artifact@v4
with:
name: verify-perf-results-${{ github.run_id }}
path: |
backend/load-test-results.json
backend/load-test-summary.json
retention-days: 90
# Gate job: all test jobs must pass before a PR can be merged.
# Configure this job name ("All tests passed") as a required status check
# in Settings → Branches → Branch protection rules for `main`.
all-tests:
name: All tests passed
runs-on: ubuntu-latest
needs: [contract, backend, frontend, python, verify-perf]
if: always()
steps:
- name: Check all test jobs succeeded
run: |
if [[ "${{ needs.contract.result }}" != "success" || \
"${{ needs.backend.result }}" != "success" || \
"${{ needs.frontend.result }}" != "success" || \
"${{ needs.python.result }}" != "success" || \
"${{ needs.verify-perf.result }}" != "success" ]]; then
echo "One or more test jobs failed."
exit 1
fi
echo "All test jobs passed."
docker:
name: Docker build validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build backend image
run: docker build ./backend -t vaccichain-backend:ci
- name: Build frontend image
run: docker build ./frontend -t vaccichain-frontend:ci
- name: Build python-service image
run: docker build ./python-service -t vaccichain-python:ci
container-scan:
name: Container vulnerability scanning
runs-on: ubuntu-latest
needs: docker
steps:
- uses: actions/checkout@v4
- name: Build backend image
run: docker build ./backend -t vaccichain-backend:ci
- name: Build frontend image
run: docker build ./frontend -t vaccichain-frontend:ci
- name: Build python-service image
run: docker build ./python-service -t vaccichain-python:ci
- name: Run Trivy scan on backend
id: scan-backend
uses: aquasecurity/trivy-action@v1
with:
image-ref: vaccichain-backend:ci
format: sarif
output: backend-trivy.sarif
severity: HIGH,CRITICAL
ignorefile: .trivyignore
exit-code: 1
continue-on-error: true
- name: Run Trivy scan on frontend
id: scan-frontend
uses: aquasecurity/trivy-action@v1
with:
image-ref: vaccichain-frontend:ci
format: sarif
output: frontend-trivy.sarif
severity: HIGH,CRITICAL
ignorefile: .trivyignore
exit-code: 1
continue-on-error: true
- name: Run Trivy scan on python-service
id: scan-python
uses: aquasecurity/trivy-action@v1
with:
image-ref: vaccichain-python:ci
format: sarif
output: python-trivy.sarif
severity: HIGH,CRITICAL
ignorefile: .trivyignore
exit-code: 1
continue-on-error: true
- name: Upload Trivy results to GitHub Security
if: always()
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: |
backend-trivy.sarif
frontend-trivy.sarif
python-trivy.sarif
- name: Upload scan artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: trivy-scan-results
path: |
backend-trivy.sarif
frontend-trivy.sarif
python-trivy.sarif
retention-days: 30
- name: Fail on HIGH/CRITICAL vulnerabilities
if: always()
run: |
if [[ "${{ steps.scan-backend.outcome }}" == "failure" || "${{ steps.scan-frontend.outcome }}" == "failure" || "${{ steps.scan-python.outcome }}" == "failure" ]]; then
echo "One or more container images contain HIGH or CRITICAL vulnerabilities."
exit 1
fi
container-scan-scheduled:
name: Weekly container vulnerability scan
runs-on: ubuntu-latest
if: github.event_name == 'schedule'
steps:
- uses: actions/checkout@v4
- name: Build backend image
run: docker build ./backend -t vaccichain-backend:prod
- name: Build frontend image
run: docker build ./frontend -t vaccichain-frontend:prod
- name: Build python-service image
run: docker build ./python-service -t vaccichain-python:prod
- name: Run Trivy scan on backend
id: scan-scheduled-backend
uses: aquasecurity/trivy-action@v1
with:
image-ref: vaccichain-backend:prod
format: table
output: backend-scan.txt
ignorefile: .trivyignore
severity: HIGH,CRITICAL
exit-code: 1
continue-on-error: true
- name: Run Trivy scan on frontend
id: scan-scheduled-frontend
uses: aquasecurity/trivy-action@v1
with:
image-ref: vaccichain-frontend:prod
format: table
output: frontend-scan.txt
ignorefile: .trivyignore
severity: HIGH,CRITICAL
exit-code: 1
continue-on-error: true
- name: Run Trivy scan on python-service
id: scan-scheduled-python
uses: aquasecurity/trivy-action@v1
with:
image-ref: vaccichain-python:prod
format: table
output: python-scan.txt
ignorefile: .trivyignore
severity: HIGH,CRITICAL
exit-code: 1
continue-on-error: true
- name: Upload scan results
if: always()
uses: actions/upload-artifact@v4
with:
name: weekly-trivy-scans
path: |
backend-scan.txt
frontend-scan.txt
python-scan.txt
retention-days: 90
- name: Fail on HIGH/CRITICAL vulnerabilities
if: always()
run: |
if [[ "${{ steps.scan-scheduled-backend.outcome }}" == "failure" || "${{ steps.scan-scheduled-frontend.outcome }}" == "failure" || "${{ steps.scan-scheduled-python.outcome }}" == "failure" ]]; then
echo "One or more scheduled container images contain HIGH or CRITICAL vulnerabilities."
exit 1
fi