Skip to content

Migrate package management and CI to pnpm #1

Migrate package management and CI to pnpm

Migrate package management and CI to pnpm #1

Workflow file for this run

name: Check and test
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
standalone: true
- uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run check
- run: pnpm test
- run: pnpm run test:integration
- run: pnpm exec playwright install --with-deps chromium
- run: pnpm run test:browser