fix(audit): bind MCP remediation commit #249
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| tags-ignore: | |
| - "v*" | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: "1.3.9" | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Lint and format checks | |
| run: bun run check | |
| - name: Typecheck | |
| run: bun run type-check | |
| - name: Test (CI-safe set) | |
| run: ./scripts/test-safe.sh --ci | |
| - name: Build compiled binary | |
| run: bun run build | |
| - name: Verify compiled binary | |
| run: bun run build:verify | |
| - name: Verify npm package contents | |
| run: bun run pack:dry-run | |
| verify-darwin-x64: | |
| runs-on: macos-15-intel | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: "1.3.9" | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Build compiled binary | |
| run: bun run build | |
| - name: Verify compiled binary | |
| run: bun run build:verify |