Skip to content

Playwright Tests

Playwright Tests #392

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
schedule:
- cron: '*/5 * * * *'
workflow_dispatch:
inputs:
event:
default: 'push'
options:
- push
- pull
- manual
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: test
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: git checkout test && npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests smoke and e2e
run: git branch && npx playwright test --project=functional
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 10