Skip to content

For now just some hacking, please ignore #419

For now just some hacking, please ignore

For now just some hacking, please ignore #419

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 30
name: e2e tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-13, windows-2022, ubuntu-22.04]
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Dependencies
uses: ./.github/actions/install-dependencies
- name: Install Playwright
run: pnpm run install-playwright
- name: Build the tool
run: pnpm build
- name: Build all workers
run: pnpm -r build:worker
- name: Run playwright tests
run: pnpm e2e
- name: Run playwright dev tests
run: pnpm e2e:dev