Skip to content

Add organisation URI and update available languages #19

Add organisation URI and update available languages

Add organisation URI and update available languages #19

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
timeout-minutes: 20
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 HTTP API tests
run: npm run test:http
- name: Run MCP protocol tests
run: npm run test:mcp