Skip to content

[feat] Implement basics #7

[feat] Implement basics

[feat] Implement basics #7

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 20
cache: "pnpm"
- name: prebuild
run: pnpm install --frozen-lockfile
- name: Build
run: cd packages/ai-craftsman && pnpm build
- name: AI Review
run: node packages/ai-craftsman/dist/ci.js
env:
BASE_REF: ${{ github.base_ref }}