Skip to content

feat: bashAllowPatterns 命令白名单 + toolAllow 覆盖 readOnly + thinking 标签剥离 #18

feat: bashAllowPatterns 命令白名单 + toolAllow 覆盖 readOnly + thinking 标签剥离

feat: bashAllowPatterns 命令白名单 + toolAllow 覆盖 readOnly + thinking 标签剥离 #18

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'