Retire agent-economy/desk examples; deepen marketplace's agent framework #65
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: | |
| starter-golden-path: | |
| name: Starter golden path | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 22 | |
| - run: npm install --no-audit --no-fund | |
| - run: npm run build | |
| - run: npm run typecheck | |
| - run: npm test | |
| - run: npm run e2e:local | |
| marketplace-playwright: | |
| name: Marketplace recorded-state Playwright e2e | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 22 | |
| - run: npm install --no-audit --no-fund | |
| - run: npm run build:packages | |
| - run: npm exec -w marketplace-web -- playwright install --with-deps chromium | |
| - run: npm run e2e -w marketplace-web | |
| escrow: | |
| name: Escrow + arbiter contracts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| workspaces: examples/txodds/escrow | |
| - run: cd examples/txodds/escrow && cargo check --workspace |