Skip to content

feat(testing-lib) Implementing a testing suite for MCP and Evals #223

feat(testing-lib) Implementing a testing suite for MCP and Evals

feat(testing-lib) Implementing a testing suite for MCP and Evals #223

Workflow file for this run

name: PR Check
on:
pull_request:
branches: [main]
concurrency:
group: pr-check-${{ github.head_ref }}
cancel-in-progress: true
jobs:
test-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.19.0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "20"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build packages
run: pnpm build
- name: Check formatting
run: pnpm format
- name: Run type checking
run: pnpm typecheck
- name: Run linting
run: pnpm lint
- name: Run tests
run: pnpm test