File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ name : ' UI Tests'
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request_target :
8+
9+ jobs :
10+ ui-tests :
11+ strategy :
12+ fail-fast : false
13+ matrix :
14+ browser : [ firefox-container, chrome-container ]
15+
16+ runs-on : [ubuntu-latest]
17+ name : ' ${{ matrix.browser }}
18+
19+ steps:
20+ - uses: actions/checkout@v4
21+ - name: Set up JDK 21
22+ uses: actions/setup-java@v4
23+ with:
24+ distribution: ' temurin'
25+ java-version : ' 21'
26+ check-latest : true
27+ cache : ' maven'
28+ - name : Set up Maven
29+ uses : stCarolas/setup-maven@v5
30+ with :
31+ maven-version : 3.9.9
32+ - name : Build warnings plugin and download dependencies
33+ run : mvn -V --color always -ntp verify -Pskip --file plugin/pom.xml
34+ - name : Run UI tests on ${{ matrix.browser }}
35+ env :
36+ BROWSER : ${{ matrix.browser }}
37+ SKIP_UPDATES : ' true'
38+ run : mvn -V --color always -ntp test --file ui-tests/pom.xml -Dgpg.skip -Dsurefire.rerunFailingTestsCount=1
You can’t perform that action at this time.
0 commit comments