fix: walk slot boundaries to find focused virtualizer row (#11653) (CP: 25.0) #15137
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: Visual tests | |
| on: pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| base: | |
| name: Base | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'vaadin' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: '0' | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| cache: 'yarn' | |
| - name: Install Dependencies | |
| run: yarn --frozen-lockfile --no-progress --non-interactive | |
| - name: Visual tests | |
| uses: nick-fields/retry@v3 | |
| env: | |
| SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
| SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
| with: | |
| timeout_minutes: 20 | |
| retry_wait_seconds: 60 | |
| max_attempts: 3 | |
| command: yarn test:base | |
| - uses: actions/upload-artifact@v6 | |
| if: ${{ failure() }} | |
| with: | |
| name: base-screenshots | |
| path: | | |
| packages/*/test/visual/base/screenshots/*/failed/*.png | |
| lumo: | |
| name: Lumo | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'vaadin' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: '0' | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| cache: 'yarn' | |
| - name: Install Dependencies | |
| run: yarn --frozen-lockfile --no-progress --non-interactive | |
| - name: Visual tests | |
| uses: nick-fields/retry@v3 | |
| env: | |
| SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
| SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
| with: | |
| timeout_minutes: 20 | |
| retry_wait_seconds: 60 | |
| max_attempts: 3 | |
| command: yarn test:lumo | |
| - uses: actions/upload-artifact@v6 | |
| if: ${{ failure() }} | |
| with: | |
| name: lumo-screenshots | |
| path: | | |
| packages/*/test/visual/lumo/screenshots/*/failed/*.png | |
| packages/vaadin-lumo-styles/test/visual/screenshots/failed/*.png | |
| aura: | |
| name: Aura | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'vaadin' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: '0' | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| cache: 'yarn' | |
| - name: Install Dependencies | |
| run: yarn --frozen-lockfile --no-progress --non-interactive | |
| - name: Visual tests (default) | |
| uses: nick-fields/retry@v3 | |
| env: | |
| SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
| SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
| with: | |
| timeout_minutes: 20 | |
| retry_wait_seconds: 60 | |
| max_attempts: 3 | |
| command: yarn test:aura | |
| - name: Visual tests (dark) | |
| uses: nick-fields/retry@v3 | |
| env: | |
| SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
| SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
| with: | |
| timeout_minutes: 20 | |
| retry_wait_seconds: 60 | |
| max_attempts: 3 | |
| command: yarn test:aura:dark | |
| - uses: actions/upload-artifact@v6 | |
| if: ${{ failure() }} | |
| with: | |
| name: aura-screenshots | |
| path: | | |
| packages/*/test/visual/aura/screenshots/dark/*/failed/*.png | |
| packages/*/test/visual/aura/screenshots/default/*/failed/*.png |