Skip to content

SWI-11363 Agent-native cutover: cut ordering surface, add readiness + errors + AGENTS.md #16

SWI-11363 Agent-native cutover: cut ordering surface, add readiness + errors + AGENTS.md

SWI-11363 Agent-native cutover: cut ordering surface, add readiness + errors + AGENTS.md #16

Workflow file for this run

name: Test
on:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20", "22"]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
# Hermetic: the suite mocks Bandwidth/Twilio and runs the loopback latency
# gates (streams p99 + translation tax) in-process, so no live credentials.
- name: Test
run: npm test