fix(minimax): migrate openclaw.json before gateway spawn, explicit au… #70
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: | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| # Match release.yml: pin-only checks, no npm `openclaw@latest` drift warnings in CI logs | |
| OPENCLAW_SKIP_NPM_LATEST_CHECK: '1' | |
| jobs: | |
| verify: | |
| name: Lint, type-check, build | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 45 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.16.0 | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint | |
| run: pnpm run lint | |
| - name: Type check | |
| run: pnpm run type-check | |
| - name: Build | |
| run: pnpm run build | |
| # Same Control UI pipeline as release (Linux Vite); catches broken upstream UI before tag builds. | |
| - name: Build OpenClaw Control UI (release parity) | |
| env: | |
| NODE_OPTIONS: '--max-old-space-size=4096' | |
| run: pnpm exec tsx scripts/ci-build-openclaw-control-ui.ts |