Skip to content

chore(deps): update dependency @typescript-eslint/eslint-plugin to v8 #591

chore(deps): update dependency @typescript-eslint/eslint-plugin to v8

chore(deps): update dependency @typescript-eslint/eslint-plugin to v8 #591

Workflow file for this run

name: Playwright Tests
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
playwright-tests:
if: github.event.pull_request.draft == false
timeout-minutes: 10
name: "Playwright Tests - ${{ matrix.project }} - Shard ${{ matrix.shard }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
project: ["Desktop_Chrome", "Mobile_Chrome", "Mobile_Safari"]
shard: [1/1]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.17.1
- name: Install dependencies
run: yarn install
- name: Build App
run: yarn build
- name: Install browsers
run: npx playwright install --with-deps
- name: Run your tests
run: yarn test:e2e --project=${{ matrix.project }} --shard=${{ matrix.shard }}
- name: Upload blob report to GitHub Actions Artifacts
if: always()
uses: actions/upload-artifact@v3
with:
name: all-blob-reports
path: blob-report
retention-days: 1
merge-reports:
if: always()
needs: [playwright-tests]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 18.17.1
- name: Install dependencies
run: yarn install
- name: Download blob reports from GitHub Actions Artifacts
uses: actions/download-artifact@v3
with:
name: all-blob-reports
path: all-blob-reports
- name: Merge into HTML Report
run: npx playwright merge-reports --reporter html ./all-blob-reports
- name: Upload HTML report
uses: actions/upload-artifact@v3
with:
name: html-report--attempt-${{ github.run_attempt }}
path: playwright-report
retention-days: 14