Skip to content

Add --mcps flag to CLI run command for overriding MCP configuration #10722

Add --mcps flag to CLI run command for overriding MCP configuration

Add --mcps flag to CLI run command for overriding MCP configuration #10722

Workflow file for this run

name: build
permissions:
contents: read
models: read
on:
push:
branches: [main, dev]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22, 24]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: "${{ matrix.node-version }}"
cache: "pnpm"
- run: sudo apt-get update && sudo apt-get install ffmpeg
- run: pnpm install --frozen-lockfile
- name: build
run: pnpm run build:ci
- name: lint:check
run: pnpm run lint:check
continue-on-error: true
- name: compile system scripts
run: pnpm run test:system
- name: compile tests
run: pnpm run test:compile
- name: test echo
run: pnpm run test:scripts:echo
- run: git fetch origin test-ignore
- name: tests
run: pnpm -r test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}