Publish Alpha CLI tarball and public Node test CI #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
| # Public Node test surface. This job is intentionally cheap: Ubuntu, no | |
| # npm install (the repo has no runtime dependencies), and no macOS app suite. | |
| name: Node tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: node-ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| node: | |
| name: broker-core client harness-adoption public-surface | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Public-surface scan | |
| run: npm run verify:public-surface | |
| - name: broker-core tests | |
| run: npm run test:broker-core | |
| - name: client tests | |
| run: npm run test:client | |
| - name: harness-adoption tests | |
| run: npm run test:harness-adoption |