Skip to content

feat: add wildcard tool filtering support with * patterns #4

feat: add wildcard tool filtering support with * patterns

feat: add wildcard tool filtering support with * patterns #4

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Type check
run: bun run typecheck
- name: Lint
run: bun run lint
- name: Run tests
run: bun run test
- name: Build executable
run: bun run build
- name: Verify executable
run: |
ls -la mcp-controller
# Test that executable runs and shows usage (exits with error code 1 when no args)
./mcp-controller || [ $? -eq 1 ]