Skip to content

test: add basic e2e snapshot test to catch visual regressions #1706

test: add basic e2e snapshot test to catch visual regressions

test: add basic e2e snapshot test to catch visual regressions #1706

Workflow file for this run

name: ci-main
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest] # macos-latest, windows-latest
node: [18]
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- run: pnpm install
- run: pnpm exec playwright install
- run: pnpm prepare
- name: Browser tests
run: pnpm test:browser