Skip to content

Setup BMAD and the local repository #4

Setup BMAD and the local repository

Setup BMAD and the local repository #4

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
check:
name: Lint, Format & Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10.29.3
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Format check
run: pnpm format:check
- name: Typecheck
run: pnpm typecheck