docs: strip conversational narrative from all MDs, add API.md with se… #66
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 | |
| 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 |