Skip to content

Fix(web-react): Removing unused prop #DS-933 #189

Fix(web-react): Removing unused prop #DS-933

Fix(web-react): Removing unused prop #DS-933 #189

Workflow file for this run

name: End-to-end Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-22.04
container:
image: mcr.microsoft.com/playwright:v1.38.1-jammy
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install dependencies
uses: bahmutov/[email protected]
with:
useRollingCache: true
- name: Run Playwright tests
run: HOME=/root yarn playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30