test: verify orchestrator context policy artifacts #325
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: | |
| pull_request: | |
| jobs: | |
| test: | |
| name: ${{ matrix.os }} / Node ${{ matrix.node }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| node: [20] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run check | |
| - run: npm run lint | |
| - run: npm run format:check | |
| - run: npm run docs:cli:check | |
| - run: npm run docs:bilingual:check | |
| - run: npm run test:core | |
| - run: npm run build | |
| - name: Verify release packages | |
| if: runner.os == 'Linux' | |
| run: npm run release:verify | |
| - name: Windows command and installer regression tests | |
| if: runner.os == 'Windows' | |
| run: npm run test:windows | |
| - name: Build Windows Desktop installer | |
| if: runner.os == 'Windows' | |
| run: npm run build:installer:windows | |
| - name: Verify Windows Desktop release | |
| if: runner.os == 'Windows' | |
| run: npm run release:verify | |
| - name: Benchmarks | |
| if: runner.os == 'Linux' | |
| run: npm run benchmark && npm run benchmark:agent | |
| - name: Deterministic Desktop plugin benchmark | |
| if: runner.os == 'Windows' | |
| run: npm run benchmark:desktop |