mend #9
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: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.24.x" | |
| - name: Setup protoc | |
| uses: arduino/setup-protoc@v3 | |
| with: | |
| version: "26.x" | |
| - name: Install protoc Go plugins | |
| run: make install-tools | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: npm | |
| cache-dependency-path: | | |
| Packages/Launchpad/package-lock.json | |
| Packages/Example TS App/package-lock.json | |
| sdk/ts/package-lock.json | |
| - name: Build frontend assets first (required by go:embed) | |
| run: make frontend-build | |
| - name: Validate default example apps | |
| run: make example-go-app-build example-rust-app-build example-ts-app-build | |
| - name: Verify (Go tests, build, Launchpad + TS SDK tests, production gate) | |
| run: make verify-core | |
| - name: Hub gRPC integration tests | |
| run: bash scripts/run_integration_hub.sh |