feat(dom)!: findAncestor removed #432
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: Tests - E2E | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test-e2e: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24.14.x' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Install dependencies | |
| run: | | |
| npm ci | |
| - name: Build and pack | |
| run: | | |
| npm run build | |
| npm pack | |
| - name: Install test dependencies | |
| working-directory: ./tests-e2e | |
| run: | | |
| npm ci | |
| npm run preparing | |
| npx playwright install --with-deps | |
| - name: Run tests | |
| working-directory: ./tests-e2e | |
| run: | | |
| npx playwright test | |
| - uses: actions/upload-artifact@v4 | |
| if: ${{ !cancelled() }} | |
| with: | |
| name: playwright-report | |
| path: tests-e2e/playwright-report/ | |
| retention-days: 30 |