Skip to content

fix: routing agent 验证 use_existing 目标是 git 仓库 #4

fix: routing agent 验证 use_existing 目标是 git 仓库

fix: routing agent 验证 use_existing 目标是 git 仓库 #4

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
concurrency:
group: ci-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- name: Type check
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Unit tests
run: npx vitest run --exclude='**/quality.test.ts' --exclude='**/integration.test.ts'