Skip to content

Reduce test timeout for main page visibility tests #18

Reduce test timeout for main page visibility tests

Reduce test timeout for main page visibility tests #18

Workflow file for this run

name: Playwright Smoke Test
on:
push:
jobs:
playwright-smoke-test:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Make Unicove preview build
run: make build
- name: Install Playwright
run: npm install -D @playwright/test --legacy-peer-deps
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests with Bunx
run: bunx playwright test
- name: Upload Playwright Report
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30