We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BoomLinkAi/image-worker-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ci.yml•864 B
name: CI
on:
push:
branches: [ main ] # Or your default branch
pull_request:
branches: [ main ] # Or your default branch
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x] # Specify Node.js versions
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: latest # Or a specific pnpm version
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run linters
run: pnpm lint
- name: Run type checking
run: pnpm typecheck
- name: Run tests
run: pnpm test