fix: open the log history automatically if we have error or fatal #4740
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: Install dependencies | |
run: npm ci | |
- name: Install Playwright | |
run: npx playwright install --with-deps | |
- name: Build test application | |
run: npm 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@v3 | |
with: | |
name: playwright-${{ matrix.project }} | |
path: | | |
test-results | |
playwright-report |