We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DaveDev42/expo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ci.yml•565 B
name: CI
on:
pull_request:
branches: [main]
jobs:
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm ci
- run: npm run build
- name: Check dist/ is up to date
run: |
if [ -n "$(git diff --name-only dist/)" ]; then
echo "::error::dist/ is out of date. Run 'npm run build' and commit dist/."
git diff --stat dist/
exit 1
fi
- run: npm run typecheck