Skip to content

add logs to debug failure of CI integration #18

add logs to debug failure of CI integration

add logs to debug failure of CI integration #18

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:
EMAIL: ${{ secrets.APP_EMAIL }}
PASSWORD: ${{ secrets.APP_PASSWORD }}
BASE_URL: ${{ secrets.APP_BASE_URL }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22.11.0
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Cucumber tests
run: npx cucumber-js --tags "@registration"
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
if-no-files-found: ignore # prevent error if report is missing
retention-days: 30