Skip to content

feat: replace dialogueStyle with notes on characters #123

feat: replace dialogueStyle with notes on characters

feat: replace dialogueStyle with notes on characters #123

Workflow file for this run

name: Lint & Typecheck
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-typecheck:
name: Lint & Typecheck
runs-on: ubuntu-latest
container: node:24-alpine
steps:
- name: Checkout code
uses: actions/checkout@v7
with:
persist-credentials: false
- name: Install pnpm
run: |
corepack enable pnpm
corepack prepare pnpm@9 --activate
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build shared package
run: pnpm --filter @branchforge/shared build
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck