Skip to content

commented out this test as there is a bug in the backend #2

commented out this test as there is a bug in the backend

commented out this test as there is a bug in the backend #2

Workflow file for this run

name: Test Features
on:
pull_request:
branches: [devops/qa-testing]
push:
branches: [devops/qa-testing]
jobs:
format:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30