Skip to content
This repository was archived by the owner on May 20, 2026. It is now read-only.

docs: Add buy, respond, and status commands to README #7

docs: Add buy, respond, and status commands to README

docs: Add buy, respond, and status commands to README #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run tests
run: bun test
- name: Type check
run: bun x tsc --noEmit
build:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build binary
run: bun run build
- name: Test binary
run: |
./ade version
./ade --help