added support of locator.describe() to log alias and corresponding locator
#29
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - v1 | |
| - v2 | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| version: [ 20, 22, 24 ] | |
| 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 |