Skip to content

build: modernize packaging and tooling for 0.3.1 #24

build: modernize packaging and tooling for 0.3.1

build: modernize packaging and tooling for 0.3.1 #24

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm lint:packages
- run: pnpm check:types
- run: pnpm --filter @formhaus/core --filter @formhaus/react run test:resolve
- run: pnpm test