Skip to content

Feat/new recipes framework #88

Feat/new recipes framework

Feat/new recipes framework #88

Workflow file for this run

name: CI
on:
push:
branches: [main, dev/*]
paths-ignore:
- "*.md"
- "docs/**"
pull_request:
branches: [main]
paths-ignore:
- "*.md"
- "docs/**"
workflow_dispatch:
jobs:
lint:
name: Biome Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v6
with:
node-version: "20"
- run: pnpm install --frozen-lockfile
- run: pnpm lint
typecheck:
name: TypeScript Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v6
with:
node-version: "20"
- run: pnpm install --frozen-lockfile
- run: pnpm typecheck