Skip to content

chore: update dependency happy-dom to v15 #969

chore: update dependency happy-dom to v15

chore: update dependency happy-dom to v15 #969

Workflow file for this run

name: E2E Test
on:
push:
tags-ignore:
- '**'
branches-ignore:
- 'production'
env:
# Force terminal colors. @see https://www.npmjs.com/package/colors
FORCE_COLOR: 1
jobs:
playwright-test:
name: playwright-test (${{ matrix.os }})
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci --ignore-scripts
- run: npm run test:e2e:playwright:install
- run: npm run test:e2e
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report-${{ matrix.os }}
path: playwright-report/
retention-days: 30