Skip to content

feat: index autorouter captures by agentId for multi-agent gateway (#8) #6

feat: index autorouter captures by agentId for multi-agent gateway (#8)

feat: index autorouter captures by agentId for multi-agent gateway (#8) #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- run: npm ci
- run: npm run typecheck
- run: npm test
- run: npm run build
- name: Verify dist/ artefacts
run: |
test -f dist/index.js
test -f dist/index.d.ts
- name: Upload dist
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
retention-days: 30