Skip to content

Version Packages (next) (#13) #34

Version Packages (next) (#13)

Version Packages (next) (#13) #34

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 11.22.0
- uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test
- run: pnpm typecheck
- run: pnpm exec playwright install --with-deps chromium
- run: pnpm test:e2e
- run: pnpm check
- run: pnpm format:check