fix: make it clear what the date-time in the applications overview stands for and clean up some duplication in the ApplicationStatusHero view #11989
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: Build Pull Request | |
| on: | |
| push: | |
| branches-ignore: | |
| - master | |
| - 1.* | |
| - 2.* | |
| pull_request: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: free disk space | |
| continue-on-error: true | |
| run: | | |
| df -h | |
| sudo swapoff -a | |
| sudo rm -f /swapfile | |
| sudo apt clean | |
| if [ -n "$(docker image ls -q)" ]; then | |
| docker rmi -f $(docker image ls -aq) || true | |
| fi | |
| df -h | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| cache: 'maven' | |
| cache-dependency-path: '**/pom.xml' | |
| - name: Set up Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| cache-dependency-path: '**/package-lock.json' | |
| - name: Build with Maven | |
| run: ./mvnw -B --no-transfer-progress install -P coverage | |
| - name: Upload surefire reports | |
| if: always() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: surefire-reports | |
| path: | | |
| **/target/surefire-reports/*.xml | |
| **/target/surefire-reports/*.txt | |
| **/target/surefire-reports/*.dump* | |
| **/target/surefire-reports/*.out | |
| **/target/surefire-reports/*.err | |
| if-no-files-found: warn | |
| retention-days: 14 |