Skip to content

feat: add Gemini CI analysis, PR comments, and CI orchestrator (Phase 3) #3

feat: add Gemini CI analysis, PR comments, and CI orchestrator (Phase 3)

feat: add Gemini CI analysis, PR comments, and CI orchestrator (Phase 3) #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- run: npm ci
- name: Type check
run: npm run typecheck
- name: Test
run: npm run test:run