Skip to content

Revert "chore(release): 3.0.0-rc3" #14

Revert "chore(release): 3.0.0-rc3"

Revert "chore(release): 3.0.0-rc3" #14

Workflow file for this run

name: Browser Tests
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
browser:
name: 'Browser tests (${{ matrix.browser }})'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
browser: [chromium, firefox, webkit]
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- run: npm ci
- name: Install Playwright browser
run: npx playwright install --with-deps ${{ matrix.browser }}
- name: Run browser tests
run: npm run test:browser -- --project ${{ matrix.browser }}