Skip to content

tests: Add E2E Tests for MCP Worker #1442

tests: Add E2E Tests for MCP Worker

tests: Add E2E Tests for MCP Worker #1442

Workflow file for this run

name: Unit Tests
on:
pull_request
permissions:
contents: read
jobs:
run-tests:
runs-on: ubicloud-standard-4
strategy:
matrix:
node-version: [22.12]
steps:
- uses: actions/checkout@v4
- run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
- run: yarn build
- name: Check formatting
run: yarn format:check
- run: yarn test:ci