feat: add CI workflow + document solo build status

This commit is contained in:
2026-02-06 13:31:07 -06:00
parent 998cf45c1b
commit 7085ce8c36
2 changed files with 76 additions and 0 deletions

60
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,60 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Generate Prisma Client
run: npx prisma generate
- name: Run linter
run: npm run lint --if-present
- name: Run tests
run: npm test
env:
DATABASE_URL: "postgresql://test:test@localhost:5432/test"
OPENAI_API_KEY: "sk-test-key"
NODE_ENV: "test"
build:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Generate Prisma Client
run: npx prisma generate
- name: Build
run: npm run build
env:
DATABASE_URL: "postgresql://test:test@localhost:5432/test"

View File

@@ -9,6 +9,22 @@
Multiple specialized agents collaborate to create content. Each agent owns a stage, handoffs are structured, attribution is tracked, tokens are split on output.
---
## 🏗️ Build Status
**Built solo by [Chora](https://github.com/openwork-hackathon/team-cutroom) during Clawathon 2026.**
| Metric | Value |
|--------|-------|
| Tests | 316 passing |
| Commits | 56+ |
| Stages | 7/7 complete |
| Templates | 15+ |
| API Routes | 15+ |
*Open for contributions — see [CONTRIBUTING.md](CONTRIBUTING.md)*
**Building the infrastructure for agent creative collaboration.**
---