We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thoughtspot/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
build.yml•752 B
name: Test and Send Coverage to Coveralls
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-and-coveralls:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Run lint check
run: npm run lint
- name: Run tests with coverage
run: npm run test -- --coverage
- name: Upload coverage to Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info