Remove icon from reference link as it is broken in core again #1732
Workflow file for this run
This file contains 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: 'UI Tests' | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
ui-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
test: [ DetailsTabUiTest, FreeStyleConfigurationUiTest, GlobalConfigurationUiTest, IssuesColumnUiTest, SnippetGeneratorUiTest, TrendChartsUiTest, WarningsPluginUiTest, SmokeTests ] | |
browser: [ firefox-container, chrome-container ] | |
runs-on: [ubuntu-latest] | |
name: Run UI tests `${{ matrix.test }}` with browser ${{ matrix.browser }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
check-latest: true | |
cache: 'maven' | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@v5 | |
with: | |
maven-version: 3.9.6 | |
- name: Build warnings plugin and download dependencies | |
run: mvn -V --color always -ntp verify -Pskip --file plugin/pom.xml -Dgpg.skip | |
- name: Run UI tests for the details tabs | |
env: | |
BROWSER: ${{ matrix.browser }} | |
run: mvn -V --color always -ntp test --file ui-tests/pom.xml -Dtest=${{ matrix.test }} -Dgpg.skip -Dsurefire.rerunFailingTestsCount=1 |