Skip to content

feat(repo): track glama.json in version control #28

feat(repo): track glama.json in version control

feat(repo): track glama.json in version control #28

Workflow file for this run

name: CI
on:
push:
branches: ['**']
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test
- name: Verify npm tarball contents
run: |
cd packages/mcp-server
npm pack --dry-run 2>&1 | tee /tmp/pack-output.txt
if grep -q "dev-tools/" /tmp/pack-output.txt; then
echo "ERROR: dev-tools/ in tarball" && exit 1
fi
echo "Tarball contents clean"