Skip to content

Add Gemini CLI as first-class agent #295

Add Gemini CLI as first-class agent

Add Gemini CLI as first-class agent #295

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- run: npm ci
- run: npm run build:prompts
- run: npx prettier --check .
- run: npx eslint src/
- run: npm run lint # TypeScript type checking
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- run: npm ci
- run: npm run build:prompts
- run: npm run test