chore(deps): bump actions/checkout from 5 to 6 (#2355) #572
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: Maven Regression Tests (localhost) | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| test_rest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: maven | |
| - run: mvn clean | |
| - run: mvn compile | |
| - run: mvn jetty:run & | |
| - run: sleep 30 | |
| - run: mvn verify -P regression-test-rest | |
| test_ui: | |
| needs: test_rest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: maven | |
| - run: mvn clean | |
| - run: mvn compile | |
| - run: mvn jetty:run & | |
| - run: sleep 30 | |
| - run: mvn verify -P regression-test-ui -D headless=true |