Integration UI Tests with No Context #2
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: Integration UI Tests with No Context | |
on: | |
workflow_run: | |
workflows: [ "Java CI with Gradle" ] | |
types: | |
- completed | |
jobs: | |
no-context-integration-ui-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@d9c87d481d55275bb5441eef3fe0e46805f9ef70 #v3.5.0 | |
with: | |
add-job-summary: 'on-failure' | |
add-job-summary-as-pr-comment: 'on-failure' | |
validate-wrappers: true | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Play integration UI tests | |
run: | | |
export DISPLAY=:99.0 | |
Xvfb -ac :99 -screen 0 1920x1080x16 & | |
sleep 10 | |
./gradlew integrationUITest --continue | |
- name: Publish tests reports | |
if: always() | |
uses: scacap/action-surefire-report@a2911bd1a4412ec18dde2d93b1758b3e56d2a880 #v1.8.0 | |
with: | |
github_token: ${{secrets.GITHUB_TOKEN}} | |
report_paths: '${{github.workspace}}/build/test-results/**/TEST-*.xml' | |
commit: ${{github.event.workflow_run.head_sha}} | |
check_name: Integration UI Tests with No Context Report | |
- name: Publish screenshots as artifacts | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: screenshots | |
path: ./build/screenshots |