Skip to content

chore: version packages (#9) #19

chore: version packages (#9)

chore: version packages (#9) #19

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm run check-types
- name: Lint
run: pnpm run lint
- name: Format check
run: pnpm run format:check
- name: Test
run: pnpm run test:coverage
- name: Build
run: pnpm run build
- name: Check package exports (publint)
run: pnpm run publint
- name: Check type resolution (are-the-types-wrong)
run: pnpm run attw