Skip to content

chore: add .prettierignore and apply Prettier formatting #27

chore: add .prettierignore and apply Prettier formatting

chore: add .prettierignore and apply Prettier formatting #27

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
ci:
name: Typecheck / Lint / Format / Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Lint
run: pnpm lint
- name: Format check
run: pnpm format:check
- name: Build
run: pnpm build
- name: Test
run: pnpm test