Vendor the integrations CLI and serve the agent skill #1
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: CLI | |
| on: | |
| pull_request: | |
| paths: | |
| - "cli/**" | |
| - ".github/workflows/cli.yml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "cli/**" | |
| - ".github/workflows/cli.yml" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Test CLI | |
| run: cd cli && bun install && bun run typecheck && bun run build && INTEGRATIONS_LIVE=0 bun test |