Skip to content

added capability to pass pageObject property as object #22

added capability to pass pageObject property as object

added capability to pass pageObject property as object #22

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
- v1
- v2
jobs:
test:
strategy:
matrix:
version: [ 20, 22 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
- run: npm ci
- run: npm run build
- run: npm run install:browsers
- run: npm run test:e2e
- name: junit report
uses: mikepenz/action-junit-report@v4
if: always()
with:
report_paths: './test-e2e/report/report.xml'
fail_on_failure: true