We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DaveDev42/tauri-plugin-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
check-dist.yml•944 B
name: Check dist/ is up to date
on:
pull_request:
branches: [main]
jobs:
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
- name: Check dist/ is in sync
run: |
if ! git diff --exit-code packages/*/dist/; then
echo "::error::dist/ is out of date. Run 'pnpm build' and commit the changes."
exit 1
fi
UNTRACKED=$(git ls-files --others --exclude-standard -- 'packages/*/dist/')
if [ -n "$UNTRACKED" ]; then
echo "::error::New untracked dist files found after build:"
echo "$UNTRACKED"
echo "Run 'pnpm build && git add packages/*/dist/' and commit."
exit 1
fi