Skip to content

Publish Alpha CLI tarball and public Node test CI #1

Publish Alpha CLI tarball and public Node test CI

Publish Alpha CLI tarball and public Node test CI #1

Workflow file for this run

# 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