Skip to content

feat: 引入 IntentRouter / ExploreAgent / ContextManager 并补齐 TUI 渲染细节 #37

feat: 引入 IntentRouter / ExploreAgent / ContextManager 并补齐 TUI 渲染细节

feat: 引入 IntentRouter / ExploreAgent / ContextManager 并补齐 TUI 渲染细节 #37

Workflow file for this run

name: CI
on:
push:
branches: [main, main-ts-version, npm-release]
pull_request:
branches: [main, main-ts-version, npm-release]
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['24']
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Type check
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Format check
run: npm run format:check
- name: Test
run: npm test
- name: Build
run: npm run build