docs: v1.1.1 changelog framework #172
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: windows-ci | |
| # Note: vitest is NOT run on Windows due to rollup native module | |
| # compatibility issues. Unit tests run on macOS/Linux CI instead. | |
| # See ROADMAP.md v1.0 criteria #9 for details. | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: '22' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build (workspace 拓扑序) | |
| run: npm run build | |
| - name: Smoke test (audit CLI) | |
| run: node sofagent/audit/dist/index.js --help |