Skip to content

Merge branch 'main' of https://github.com/siam1113/qase_playwright #2

Merge branch 'main' of https://github.com/siam1113/qase_playwright

Merge branch 'main' of https://github.com/siam1113/qase_playwright #2

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
env:
API_TOKEN: ${{ secrets.API_TOKEN }}
QASE_REPORT: 1
PROJECT_CODE: TPP
QASE_RUN_ID: 9
ENVIRONMENT_ID: 1
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30