Skip to content

Publish MCP server to the official registry under io.github.catorch #12

Publish MCP server to the official registry under io.github.catorch

Publish MCP server to the official registry under io.github.catorch #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run build
- run: npm test
- name: MCP server
working-directory: mcp
run: |
npm ci
npm run build
npm test