Skip to content

feat: 添加监控面板、CI workflow和MemoV GC脚本 #1

feat: 添加监控面板、CI workflow和MemoV GC脚本

feat: 添加监控面板、CI workflow和MemoV GC脚本 #1

Workflow file for this run

name: CI
on:
push:
branches: [ main, central-dev, silicon-dev, tokyo-dev ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build
- name: Run tests
run: npm run test