docs: state fork intent and require PLAN/MERGE review after each sync #80
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| typecheck: | |
| # 只在 macOS 构建(Apple Silicon) | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-bun | |
| - name: Typecheck | |
| run: bun run scripts/dedupe-keymap.ts && bun run typecheck | |
| test: | |
| # 只在 macOS 运行测试 | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-bun | |
| - name: Run tests | |
| run: bun run --cwd packages/core test && bun run --cwd packages/llm test |