fix(ui5-list): suppress F2 aria description when no interactive items present #15794
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: CI - test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - 'main' | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| suite: ['base', 'compat', 'ai', 'main:cy:suite-1', 'main:cy:suite-2', 'main:cy:suite-3', 'main:cy:suite-4', 'fiori'] | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4.1.0 | |
| with: | |
| node-version: 22 | |
| cache: 'yarn' | |
| - name: Install | |
| run: yarn --immutable | |
| - name: Build | |
| run: yarn ci:testbuild | |
| - name: Test | |
| run: yarn ci:test:${{ matrix.suite }} --verbose |