feat(coral): restore the CoralOS round — buyer + seller trade the txo… #37
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
| 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 |