Skip to content

fix: enhance README.md to clarify orchestrator's tool surface capabil… #8

fix: enhance README.md to clarify orchestrator's tool surface capabil…

fix: enhance README.md to clarify orchestrator's tool surface capabil… #8

Workflow file for this run

# SPDX-License-Identifier: AGPL-3.0-only
# Copyright 2026 100monkeys.ai
name: CI
on:
push:
branches: [main]
paths:
- 'zaru-mcp-server/**'
- '.github/workflows/ci.yml'
pull_request:
branches: [main]
paths:
- 'zaru-mcp-server/**'
- '.github/workflows/ci.yml'
defaults:
run:
working-directory: zaru-mcp-server
jobs:
lint-and-build:
name: Lint & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: zaru-mcp-server/package-lock.json
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build