Skip to content

V2

V2 #358

Workflow file for this run

name: E2E Tests
on:
push:
branches:
- main
- 'v[0-9]+.x'
pull_request:
branches:
- main
- 'v[0-9]+.x'
permissions:
contents: read
jobs:
e2e:
name: Run E2E Tests
timeout-minutes: 60
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
node-version: '22'
- name: Compile Extension.js
run: pnpm compile
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run E2E Tests
run: pnpm test:e2e
- name: Upload Test Report
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: e2e-report
path: e2e-report/
retention-days: 15