feat(sdk): add immutable Flow Tool manifest contracts #710
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: Relayflow v2 surface package | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/surface-package.yml" | |
| - "scripts/surface-package-gate.sh" | |
| - "packages/surface/**" | |
| - "regressions/**" | |
| - "packages/sdk/**" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/surface-package.yml" | |
| - "scripts/surface-package-gate.sh" | |
| - "packages/surface/**" | |
| - "regressions/**" | |
| - "packages/sdk/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| packed-consumer: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: "1.4.0" | |
| - name: Test source, regressions, and packed consumers | |
| run: bash scripts/surface-package-gate.sh |