Skip to content

feat: add automated PR review agent that summarizes changes as a comment #10

feat: add automated PR review agent that summarizes changes as a comment

feat: add automated PR review agent that summarizes changes as a comment #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
env:
DATABASE_URL: "file:./dev.db"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Generate Prisma client
run: npm run prisma:generate
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test