Skip to content

chore(release): v0.4.2 #56

chore(release): v0.4.2

chore(release): v0.4.2 #56

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_ADMIN_TOKEN }}
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 9.14.0
- name: Install dependencies
run: pnpm install
- name: Install Playwright browsers
run: pnpm exec playwright install
- name: Build
run: pnpm build
- name: Tests
run: pnpm test