Skip to content

Add some logs.

Add some logs. #11753

Workflow file for this run

name: Playwright Tests
on: push
jobs:
test:
timeout-minutes: 60
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run build
- run: npx playwright install
- run: npm i
- name: Run Playwright
run: npm run playwright
- uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: playwright-report
path: ./e2e-tests/playwright-report/
retention-days: 30