Skip to content

chore: exclude tests from build output (keep them out of the npm tarb… #5

chore: exclude tests from build output (keep them out of the npm tarb…

chore: exclude tests from build output (keep them out of the npm tarb… #5

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
name: Test & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build
run: npm run build
- name: Verify MCP server starts
run: |
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | timeout 5 node dist/index.js