Skip to content

Bump diff from 4.0.2 to 4.0.4 #183

Bump diff from 4.0.2 to 4.0.4

Bump diff from 4.0.2 to 4.0.4 #183

Workflow file for this run

# see https://playwright.dev/docs/ci-intro
name: e2e
on:
push:
branches:
- master
pull_request_target:
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
- name: Install dependencies
run: yarn install
- name: Install Playwright Browsers
run: |
# Install Playwright without trying to install system dependencies
yarn playwright install
# Install specific browsers needed
yarn playwright install chromium
- name: Run Playwright tests
run: yarn test:e2e
# Update to v4 to fix the deprecated action issue
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30