Skip to content

fix(minimax): migrate openclaw.json before gateway spawn, explicit au… #70

fix(minimax): migrate openclaw.json before gateway spawn, explicit au…

fix(minimax): migrate openclaw.json before gateway spawn, explicit au… #70

Workflow file for this run

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