-
Notifications
You must be signed in to change notification settings - Fork 3
83 lines (62 loc) · 1.72 KB
/
ci.yml
File metadata and controls
83 lines (62 loc) · 1.72 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
name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test-client:
name: Test Client
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies (monorepo)
run: npm ci
- name: Lint
run: npm run lint
- name: Run tests
run: npm run test:client
- name: Build client
run: npm run build:client
test-server:
name: Test Server
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies (monorepo)
run: npm ci
- name: Build server
run: npm run build:server
- name: Run tests (if available)
run: npm test --if-present --workspace=server
continue-on-error: true
security-audit:
name: Security Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run security audit (all workspaces)
run: npm audit --audit-level=high
continue-on-error: true
- name: Run security audit (client)
run: npm audit --audit-level=high --workspace=client
continue-on-error: true
- name: Run security audit (server)
run: npm audit --audit-level=high --workspace=server
continue-on-error: true