Skip to content

feat: CI

feat: CI #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies (skip native build scripts)
run: npm ci --ignore-scripts
- name: Build TypeScript
run: npm run build
- name: Run tests
run: node --test test/http-api.test.mjs test/mcp-protocol.test.mjs