Skip to content

docs(coral-agents): fix stale paths after the lean refactor (agent-ec… #39

docs(coral-agents): fix stale paths after the lean refactor (agent-ec…

docs(coral-agents): fix stale paths after the lean refactor (agent-ec… #39

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
runtime:
name: Agent runtime (packages/agent-runtime)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
- run: cd packages/agent-runtime && npm install
- run: cd packages/agent-runtime && npm run typecheck
- run: cd packages/agent-runtime && npm test
txodds:
name: TxODDS World Cup Oracle (typecheck + tests)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
- name: Build the runtime (the example needs its dist)
run: cd packages/agent-runtime && npm install && npm run build
- name: txodds (typecheck + tests)
run: cd examples/txodds && npm install && npm run typecheck && npm test