Skip to content

chore(main): release 3.2.1 #21

chore(main): release 3.2.1

chore(main): release 3.2.1 #21

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
concurrency:
group: ci-${{ github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
if: ${{ !startsWith(github.head_ref, 'release-please--') }}
steps:
- uses: actions/checkout@v7
- uses: pnpm/setup@v2
with:
version: 11
install: false
- uses: actions/setup-node@v7
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
- run: pnpm run fmt:check
- run: pnpm run typecheck
- run: pnpm run test
e2e:
runs-on: ubuntu-latest
if: ${{ !startsWith(github.head_ref, 'release-please--') }}
steps:
- uses: actions/checkout@v7
- uses: pnpm/setup@v2
with:
version: 11
install: false
- uses: actions/setup-node@v7
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm exec playwright install --with-deps chromium
- run: pnpm run test:e2e
- uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 7