Skip to content

feat: agents mcp

feat: agents mcp #1198

Workflow file for this run

name: Pull Request
on: pull_request
jobs:
check:
timeout-minutes: 10
strategy:
matrix:
os: [
ubuntu-24.04
# windows-latest,
# macos-latest,
]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Get Playwright version
id: playwright-version
run: echo "version=$(jq -r '.packages["node_modules/playwright"].version' package-lock.json)" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
uses: actions/cache@v4
id: playwright-cache
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }}
- run: npm ci
- run: npm run build
- run: npm run check
- run: CI=true npm run test