Skip to content

fix(browser_eval): align tool args with Playwright MCP 0.0.75 schema (target fields + fill_form) #168

fix(browser_eval): align tool args with Playwright MCP 0.0.75 schema (target fields + fill_form)

fix(browser_eval): align tool args with Playwright MCP 0.0.75 schema (target fields + fill_form) #168

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run type check
run: pnpm run typecheck
- name: Run tests
run: pnpm test