-
Notifications
You must be signed in to change notification settings - Fork 76
198 lines (159 loc) · 5.46 KB
/
Copy pathci.yml
File metadata and controls
198 lines (159 loc) · 5.46 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
name: CI/CD Pipeline
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
env:
CARGO_TERM_COLOR: always
NODE_VERSION: '18'
jobs:
# ─── Smart Contracts ─────────────────────────────────────────────
contracts:
name: Contracts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.85.0
- name: Build contracts
run: cd contracts && cargo build --lib
- name: Run contract tests
continue-on-error: true
run: cd contracts && cargo test
# ─── Backend ─────────────────────────────────────────────────────
backend:
name: Backend
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15
env:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: starked_test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis:7
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 2
retry_on: error
command: cd backend && npm ci
- name: Type check
run: cd backend && npx tsc --noEmit
- name: Lint
continue-on-error: true
run: cd backend && npm run lint
- name: Test
continue-on-error: true
timeout-minutes: 10
run: cd backend && npm run test:ci
env:
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/starked_test
REDIS_URL: redis://localhost:6379
JWT_SECRET: test_secret
- name: Build
run: cd backend && npm run build
# ─── Frontend ────────────────────────────────────────────────────
frontend:
name: Frontend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 2
retry_on: error
command: cd frontend && npm ci
- name: Type check
continue-on-error: true
run: cd frontend && npx tsc --noEmit
- name: Lint
continue-on-error: true
run: cd frontend && npm run lint
- name: Test
continue-on-error: true
timeout-minutes: 10
run: cd frontend && npm run test:ci
- name: Build
continue-on-error: true
timeout-minutes: 15
run: cd frontend && NODE_OPTIONS="--max-old-space-size=4096" npm run build
# ─── Dependency Audit ────────────────────────────────────────────
dependency-audit:
name: Dependency Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Audit backend dependencies (high/critical)
continue-on-error: true
run: cd backend && npm audit --audit-level=high
- name: Audit frontend dependencies (high/critical)
continue-on-error: true
run: cd frontend && npm audit --audit-level=high
# ─── Cargo Audit (contracts) ─────────────────────────────────────
cargo-audit:
name: Cargo Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.85.0
- name: Install cargo-audit
run: cargo install cargo-audit --version 0.21.1 --locked
- name: Audit contract dependencies
continue-on-error: true
run: cd contracts && cargo audit
# ─── Security Scan ───────────────────────────────────────────────
security-scan:
name: Security Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Trivy vulnerability scan
uses: aquasecurity/trivy-action@master
continue-on-error: true
with:
scan-type: 'fs'
scan-ref: '.'
format: 'sarif'
output: 'trivy-results.sarif'
- name: Upload scan results
if: always()
continue-on-error: true
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'