Skip to content

fix(mcp): harden mcp-client-agent against pre-1.10.x Playground prefill race #263

fix(mcp): harden mcp-client-agent against pre-1.10.x Playground prefill race

fix(mcp): harden mcp-client-agent against pre-1.10.x Playground prefill race #263

Workflow file for this run

name: PR Validation
on:
pull_request:
branches: [main]
jobs:
typecheck:
name: TypeScript Check
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: TypeScript check
run: npm run typecheck
lint:
name: ESLint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint:ci