Skip to content

docs(agents): add pre-push checklist aligned with submit-changes #304

docs(agents): add pre-push checklist aligned with submit-changes

docs(agents): add pre-push checklist aligned with submit-changes #304

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Format check
run: pnpm format:check
- name: Type check
run: pnpm typecheck
- name: Test
run: pnpm test
- name: Size limit
run: pnpm size