Skip to content

Commit f269b36

Browse files
committed
feat: 添加监控面板、CI workflow和MemoV GC脚本
1 parent 82842fc commit f269b36

3 files changed

Lines changed: 470 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ main, central-dev, silicon-dev, tokyo-dev ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Setup Node.js
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: '22'
19+
cache: 'npm'
20+
21+
- name: Install dependencies
22+
run: npm ci
23+
24+
- name: Typecheck
25+
run: npm run typecheck
26+
27+
- name: Build
28+
run: npm run build
29+
30+
- name: Run tests
31+
run: npm run test

0 commit comments

Comments
 (0)