-
Notifications
You must be signed in to change notification settings - Fork 0
458 lines (409 loc) · 15.6 KB
/
ci.yml
File metadata and controls
458 lines (409 loc) · 15.6 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
name: CI Workflow
on:
# push:
# branches:
# - week5
# - main
# pull_request:
# branches:
# - main
workflow_dispatch:
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL }}
jobs:
backend-tests:
name: Backend Tests (Node.js ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: week5/backend/package-lock.json
- name: Install backend dependencies
run: |
cd week5/backend
npm ci
- name: Run backend tests
run: |
cd week5/backend
npm test -- --coverage --coverageReporters=json --coverageReporters=lcov
- name: Upload backend test artifacts
uses: actions/upload-artifact@v4
if: always()
with:
name: backend-test-results-node-${{ matrix.node-version }}
path: |
week5/backend/coverage/
week5/backend/package.json
week5/backend/jest.config.js
retention-days: 30
- name: Start backend server and health check
run: |
cd week5/backend
npm start &
sleep 5
curl -f http://localhost:3000/health
curl -f http://localhost:3000/api/users
pkill -f "node server.js"
- name: Validate backend deployment
run: |
cd week5/backend
# Start server in background for validation
npm start &
SERVER_PID=$!
sleep 8
echo "Running comprehensive API validation..."
# Test health endpoint
echo "Testing health endpoint..."
curl -f -s http://localhost:3000/health | jq '.'
# Test root endpoint
echo "Testing root endpoint..."
curl -f -s http://localhost:3000/ | jq '.'
# Test get all users
echo "Testing GET /api/users..."
curl -f -s http://localhost:3000/api/users | jq '.'
# Test create user
echo "Testing POST /api/users..."
NEW_USER=$(curl -f -s -X POST http://localhost:3000/api/users \
-H "Content-Type: application/json" \
-d '{"name":"CI Test User","email":"ci-test@example.com"}')
echo "$NEW_USER" | jq '.'
USER_ID=$(echo "$NEW_USER" | jq -r '.id')
# Test get specific user
echo "Testing GET /api/users/$USER_ID..."
curl -f -s http://localhost:3000/api/users/$USER_ID | jq '.'
# Test delete user
echo "Testing DELETE /api/users/$USER_ID..."
curl -f -s -X DELETE http://localhost:3000/api/users/$USER_ID | jq '.'
# Test 404 handling
echo "Testing 404 handling..."
curl -s http://localhost:3000/nonexistent | jq '.'
echo "All API endpoints validated successfully!"
# Clean up
kill $SERVER_PID
- name: Send Discord notification for backend success
if: success()
run: |
curl -H "Content-Type: application/json" \
-X POST \
-d '{
"embeds": [{
"title": "Backend Tests Passed",
"description": "Backend tests for Node.js ${{ matrix.node-version }} completed successfully",
"color": 3066993,
"fields": [
{
"name": "Job",
"value": "${{ github.job }}",
"inline": true
},
{
"name": "Node.js Version",
"value": "${{ matrix.node-version }}",
"inline": true
},
{
"name": "Repository",
"value": "${{ github.repository }}",
"inline": true
},
{
"name": "Branch",
"value": "${{ github.ref_name }}",
"inline": true
},
{
"name": "Commit",
"value": "[${{ github.sha }}](https://github.com/${{ github.repository }}/commit/${{ github.sha }})",
"inline": true
},
{
"name": "Duration",
"value": "Job completed at $(date -u)",
"inline": false
}
],
"timestamp": "'$(date -u +%Y-%m-%dT%H:%M:%SZ)'",
"footer": {
"text": "GitHub Actions"
}
}]
}' \
${{ env.DISCORD_WEBHOOK }}
- name: Send Discord notification for backend failure
if: failure()
run: |
curl -H "Content-Type: application/json" \
-X POST \
-d '{
"embeds": [{
"title": "Backend Tests Failed",
"description": "Backend tests for Node.js ${{ matrix.node-version }} failed",
"color": 15158332,
"fields": [
{
"name": "Job",
"value": "${{ github.job }}",
"inline": true
},
{
"name": "Node.js Version",
"value": "${{ matrix.node-version }}",
"inline": true
},
{
"name": "Repository",
"value": "${{ github.repository }}",
"inline": true
},
{
"name": "Branch",
"value": "${{ github.ref_name }}",
"inline": true
},
{
"name": "Commit",
"value": "[${{ github.sha }}](https://github.com/${{ github.repository }}/commit/${{ github.sha }})",
"inline": true
},
{
"name": "View Logs",
"value": "[Click here](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})",
"inline": false
}
],
"timestamp": "'$(date -u +%Y-%m-%dT%H:%M:%SZ)'",
"footer": {
"text": "GitHub Actions"
}
}]
}' \
${{ env.DISCORD_WEBHOOK }}
frontend-tests:
name: Frontend Tests (Node.js ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: week5/frontend/package-lock.json
- name: Install frontend dependencies
run: |
cd week5/frontend
npm ci
- name: Run frontend tests
run: |
cd week5/frontend
npm test -- --coverage --coverageReporters=json --coverageReporters=lcov
- name: Upload frontend test artifacts
uses: actions/upload-artifact@v4
if: always()
with:
name: frontend-test-results-node-${{ matrix.node-version }}
path: |
week5/frontend/coverage/
week5/frontend/package.json
week5/frontend/jest.config.js
retention-days: 30
- name: Validate frontend deployment
run: |
cd week5/frontend
# Start a simple HTTP server for frontend
python3 -m http.server 8080 &
SERVER_PID=$!
sleep 5
echo "Running frontend validation..."
# Test if HTML loads
echo "Testing HTML page load..."
curl -f -s http://localhost:8080/index.html | head -20
# Test if CSS loads
echo "Testing CSS file..."
curl -f -s http://localhost:8080/styles.css | head -10
# Test if JavaScript loads
echo "Testing JavaScript file..."
curl -f -s http://localhost:8080/app.js | head -10
echo "Frontend files validated successfully!"
# Clean up
kill $SERVER_PID
- name: Send Discord notification for frontend success
if: success()
run: |
curl -H "Content-Type: application/json" \
-X POST \
-d '{
"embeds": [{
"title": "Frontend Tests Passed",
"description": "Frontend tests for Node.js ${{ matrix.node-version }} completed successfully",
"color": 3066993,
"fields": [
{
"name": "Job",
"value": "${{ github.job }}",
"inline": true
},
{
"name": "Node.js Version",
"value": "${{ matrix.node-version }}",
"inline": true
},
{
"name": "Repository",
"value": "${{ github.repository }}",
"inline": true
},
{
"name": "Branch",
"value": "${{ github.ref_name }}",
"inline": true
},
{
"name": "Commit",
"value": "[${{ github.sha }}](https://github.com/${{ github.repository }}/commit/${{ github.sha }})",
"inline": true
},
{
"name": "Duration",
"value": "Job completed at $(date -u)",
"inline": false
}
],
"timestamp": "'$(date -u +%Y-%m-%dT%H:%M:%SZ)'",
"footer": {
"text": "GitHub Actions"
}
}]
}' \
${{ env.DISCORD_WEBHOOK }}
- name: Send Discord notification for frontend failure
if: failure()
run: |
curl -H "Content-Type: application/json" \
-X POST \
-d '{
"embeds": [{
"title": "Frontend Tests Failed",
"description": "Frontend tests for Node.js ${{ matrix.node-version }} failed",
"color": 15158332,
"fields": [
{
"name": "Job",
"value": "${{ github.job }}",
"inline": true
},
{
"name": "Node.js Version",
"value": "${{ matrix.node-version }}",
"inline": true
},
{
"name": "Repository",
"value": "${{ github.repository }}",
"inline": true
},
{
"name": "Branch",
"value": "${{ github.ref_name }}",
"inline": true
},
{
"name": "Commit",
"value": "[${{ github.sha }}](https://github.com/${{ github.repository }}/commit/${{ github.sha }})",
"inline": true
},
{
"name": "View Logs",
"value": "[Click here](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})",
"inline": false
}
],
"timestamp": "'$(date -u +%Y-%m-%dT%H:%M:%SZ)'",
"footer": {
"text": "GitHub Actions"
}
}]
}' \
${{ env.DISCORD_WEBHOOK }}
deployment-summary:
name: Deployment Summary
runs-on: ubuntu-latest
needs: [backend-tests, frontend-tests]
if: always()
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Send Discord deployment summary
run: |
BACKEND_STATUS="${{ needs.backend-tests.result }}"
FRONTEND_STATUS="${{ needs.frontend-tests.result }}"
# Determine overall status and color
if [[ "$BACKEND_STATUS" == "success" && "$FRONTEND_STATUS" == "success" ]]; then
OVERALL_STATUS="success"
COLOR=3066993
TITLE="Deployment Complete - All Tests Passed"
DESCRIPTION="All jobs completed successfully across all Node.js versions"
else
OVERALL_STATUS="failure"
COLOR=15158332
TITLE="Deployment Issues Detected"
DESCRIPTION="Some jobs failed. Please check the individual job results."
fi
curl -H "Content-Type: application/json" \
-X POST \
-d '{
"embeds": [{
"title": "'"$TITLE"'",
"description": "'"$DESCRIPTION"'",
"color": '"$COLOR"',
"fields": [
{
"name": "Backend Tests",
"value": "'"$BACKEND_STATUS"'",
"inline": true
},
{
"name": "Frontend Tests",
"value": "'"$FRONTEND_STATUS"'",
"inline": true
},
{
"name": "Repository",
"value": "${{ github.repository }}",
"inline": true
},
{
"name": "Branch",
"value": "${{ github.ref_name }}",
"inline": true
},
{
"name": "Commit",
"value": "[${{ github.sha }}](https://github.com/${{ github.repository }}/commit/${{ github.sha }})",
"inline": true
},
{
"name": "Workflow Run",
"value": "[View Details](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})",
"inline": true
}
],
"timestamp": "'$(date -u +%Y-%m-%dT%H:%M:%SZ)'",
"footer": {
"text": "GitHub Actions CI/CD Pipeline"
}
}]
}' \
${{ env.DISCORD_WEBHOOK }}