Skip to content

feat: pass LANGWATCH_API_KEY to MCP server config #121

feat: pass LANGWATCH_API_KEY to MCP server config

feat: pass LANGWATCH_API_KEY to MCP server config #121

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24]
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.15.0
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm typecheck
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: Run unit tests
run: pnpm test:ci
- name: Run E2E tests
run: pnpm test:e2e