Add vault payment MCP tools #350
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: | |
| pull_request: | |
| branches: [main] | |
| merge_group: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| services: | |
| redis: | |
| image: redis:7-alpine | |
| ports: | |
| - 6379:6379 | |
| options: >- | |
| --health-cmd "redis-cli ping" | |
| --health-interval 5s | |
| --health-timeout 3s | |
| --health-retries 20 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Pin Bun: the managed-auth App bundle check is byte-exact and Bun's | |
| # minifier output can change between releases. Regenerate the bundle | |
| # with this exact version when bumping it. | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: "1.3.3" | |
| - run: bun install --frozen-lockfile | |
| - name: Check managed-auth App bundle | |
| run: bun run check:managed-auth-app | |
| - name: Type check | |
| run: bunx tsc --noEmit --incremental false | |
| - name: Test | |
| run: bun test | |
| - name: OAuth Redis recordings are up to date | |
| run: | | |
| bun scripts/record-oauth-redis-contract.ts | |
| git diff --exit-code -- fixtures/oauth-redis-recordings.json || { | |
| echo "fixtures/oauth-redis-recordings.json differs from what the OAuth code now writes." | |
| echo "Re-run: bun scripts/record-oauth-redis-contract.ts, review the diff, and commit it." | |
| exit 1 | |
| } |