Skip to content

fix: display molecule when no active tab #7768

fix: display molecule when no active tab

fix: display molecule when no active tab #7768

Workflow file for this run

name: E2E tests
on:
push:
branches:
- main
pull_request:
jobs:
e2e:
runs-on: ubuntu-latest
strategy:
matrix:
project: [chromium, firefox, webkit]
fail-fast: false
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version-file: package.json
- name: Install dependencies
run: npm ci
- name: Install Playwright
run: npx playwright install --with-deps
- name: Build test application
env:
NODE_OPTIONS: --max-old-space-size=3072
run: node --run build-no-minify
- name: Run E2E tests on ${{ matrix.project }}
run: npx playwright test --project ${{ matrix.project }}
continue-on-error: ${{ matrix.project == 'webkit' }}
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-${{ matrix.project }}
path: |
test-results
playwright-report