Skip to content

chore: add two fields to tsconfig #72

chore: add two fields to tsconfig

chore: add two fields to tsconfig #72

Workflow file for this run

name: Playwright tests
on:
push:
branches:
- main
pull_request:
jobs:
playwright:
runs-on: ubuntu-latest
strategy:
matrix:
project: [chromium, firefox, webkit]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install dependencies
run: npm i
- name: Install Playwright
run: npx playwright install --with-deps
- name: Run tests on ${{ matrix.project }}
run: npm run playwright -- --project ${{ matrix.project }}