Add companion hardening, MCP diagnostics, and Fable alias #113
Workflow file for this run
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: | |
| jobs: | |
| core-cross-platform: | |
| name: Core checks (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - windows-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run check:version-sync | |
| - run: npm run check:changelog | |
| - run: npm run lint | |
| - run: npm run typecheck | |
| - run: npm run test:cross-platform | |
| macos-full: | |
| name: Full CI (macos-latest) | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| - run: npm install -g @openai/codex | |
| - run: codex --version | |
| - run: npm ci | |
| - run: npm run check:version-sync | |
| - run: npm run check:changelog | |
| - run: npm run lint | |
| - run: npm run typecheck | |
| - run: npm run test | |
| - run: npm run test:integration | |
| - run: npm run test:e2e | |
| linux-full: | |
| name: Full CI (ubuntu-latest) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| - run: npm install -g @openai/codex | |
| - run: codex --version | |
| - run: npm ci | |
| - run: npm run check:version-sync | |
| - run: npm run check:changelog | |
| - run: npm run lint | |
| - run: npm run typecheck | |
| - run: npm run test | |
| - run: npm run test:integration | |
| - run: npm run test:e2e |