chore: prune legacy config switches #2338
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, dev] | |
| pull_request: | |
| branches: [main, dev] | |
| schedule: | |
| - cron: '0 8 * * 1' # Weekly Monday 08:00 UTC — smoke tests | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # ── Fast gate: typecheck + build ── | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Type check | |
| run: npx tsc --noEmit | |
| - name: Build | |
| run: npm run build | |
| # ── Unit tests (vitest shard) ── | |
| # PR: ubuntu + Node 22 only (fast feedback, 2 jobs). | |
| # Push to main/dev: full matrix for cross-platform/cross-version coverage (12 jobs). | |
| unit-test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ${{ (github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && fromJSON('["ubuntu-latest","macos-latest","windows-latest"]') || fromJSON('["ubuntu-latest"]') }} | |
| node-version: ${{ (github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && fromJSON('["22"]') || fromJSON('["22"]') }} | |
| shard: [1, 2] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run unit tests (Node ${{ matrix.node-version }}, shard ${{ matrix.shard }}/2) | |
| run: npx vitest run --project unit --project extension --reporter=verbose --shard=${{ matrix.shard }}/2 | |
| # ── Bun compatibility check ── | |
| bun-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.5 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run unit tests under Bun | |
| run: bun vitest run --project unit --reporter=verbose | |
| # Adapter tests are pure unit tests — OS doesn't affect results. | |
| adapter-test: | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run focused adapter tests | |
| run: npm run test:adapter -- --reporter=verbose | |
| # ── Smoke tests (scheduled / manual only) ── | |
| smoke-test: | |
| if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' | |
| needs: build | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # NOTE: Windows excluded — browser-actions/setup-chrome hangs during | |
| # Chrome MSI installation on Windows runners (known issue). | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Setup Chrome | |
| uses: ./.github/actions/setup-chrome | |
| id: setup-chrome | |
| - name: Build | |
| run: npm run build | |
| - name: Run smoke tests (Linux, via xvfb) | |
| if: runner.os == 'Linux' | |
| run: | | |
| xvfb-run --auto-servernum --server-args="-screen 0 1280x720x24" \ | |
| npx vitest run tests/smoke/ --reporter=verbose | |
| - name: Run smoke tests (macOS / Windows) | |
| if: runner.os != 'Linux' | |
| run: npx vitest run tests/smoke/ --reporter=verbose | |
| timeout-minutes: 15 |