-
Notifications
You must be signed in to change notification settings - Fork 5
171 lines (144 loc) · 4.12 KB
/
Copy pathci.yml
File metadata and controls
171 lines (144 loc) · 4.12 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
name: CI/CD Pipeline
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
# Explicit permissions for security (CodeQL requirement)
permissions:
contents: read
jobs:
# Detect which paths changed
changes:
runs-on: ubuntu-latest
outputs:
backend: ${{ steps.filter.outputs.backend }}
frontend: ${{ steps.filter.outputs.frontend }}
mcp: ${{ steps.filter.outputs.mcp }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
backend:
- 'backend/**'
- 'railway.json'
frontend:
- 'frontend/**'
mcp:
- 'mcp-server/**'
- 'supabase/migrations/**'
test-backend:
name: Backend Tests
needs: changes
if: ${{ needs.changes.outputs.backend == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
working-directory: ./backend
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov httpx flake8
pip install -r requirements.txt
- name: Lint (flake8)
working-directory: ./backend
run: |
flake8 services/ routes/ middleware/ config/ dependencies.py main.py
- name: Run tests
working-directory: ./backend
env:
DEBUG: "true"
API_KEY: "test-secret-key"
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }}
SUPABASE_JWT_SECRET: ${{ secrets.SUPABASE_JWT_SECRET }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }}
PINECONE_INDEX_NAME: "codeintel-test"
run: |
pytest tests/ -v --cov=services --cov-report=term-missing
test-frontend:
name: Frontend Tests
needs: changes
if: ${{ needs.changes.outputs.frontend == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
working-directory: ./frontend
run: bun install
- name: Lint (ESLint)
working-directory: ./frontend
run: bun run lint
- name: Check TypeScript
working-directory: ./frontend
run: bun run tsc --noEmit
- name: Build frontend
working-directory: ./frontend
run: bun run build
- name: Run tests
working-directory: ./frontend
run: bun run test
test-mcp:
name: MCP Server Tests
needs: changes
if: ${{ needs.changes.outputs.mcp == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip'
- name: Install dependencies
working-directory: ./mcp-server
run: |
python -m pip install --upgrade pip
pip install pytest-cov flake8
pip install -r requirements.txt
- name: Lint (flake8)
working-directory: ./mcp-server
run: |
flake8 .
- name: Run tests
working-directory: ./mcp-server
env:
API_KEY: "test-key"
BACKEND_API_URL: "http://localhost:8000"
run: |
pytest tests/ -v --cov=. --cov-report=term-missing
security-scan:
name: Security Scan
needs: changes
if: ${{ needs.changes.outputs.backend == 'true' || needs.changes.outputs.frontend == 'true' || needs.changes.outputs.mcp == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
scan-ref: '.'
format: 'table'
severity: 'CRITICAL,HIGH'
exit-code: '1'
- name: Check for secrets
uses: trufflesecurity/trufflehog@main
with:
path: ./
base: main
head: HEAD