forked from sugyan/claude-code-webui
-
Notifications
You must be signed in to change notification settings - Fork 74
91 lines (73 loc) · 2.06 KB
/
ci.yml
File metadata and controls
91 lines (73 loc) · 2.06 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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
backend:
name: Backend
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: backend/package-lock.json
- name: Install backend dependencies
run: cd backend && npm ci
- name: Generate version.ts
run: cd backend && node scripts/generate-version.js
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Install and cache Deno dependencies
run: cd backend && deno install && deno cache cli/deno.ts
- name: Lint
run: cd backend && npm run lint
- name: Type check
run: cd backend && npm run typecheck
frontend:
name: Frontend
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: cd frontend && npm ci
- name: Lint
run: cd frontend && npm run lint
- name: Type check
run: cd frontend && npm run typecheck
- name: Build
run: cd frontend && npm run build
# Summary job for branch protection rules
ci-success:
name: CI Success
runs-on: ubuntu-latest
needs: [backend, frontend]
if: always()
steps:
- name: Check all jobs
run: |
if [[ "${{ needs.backend.result }}" == "success" && "${{ needs.frontend.result }}" == "success" ]]; then
echo "All CI jobs passed"
exit 0
else
echo "Some CI jobs failed"
exit 1
fi