diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 44665624..7c437b9a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: distribution: 'temurin' java-version: 17 - name: Run Maven tests - run: mvn org.jacoco:jacoco-maven-plugin:prepare-agent verify org.jacoco:jacoco-maven-plugin:report sonar:sonar -DexcludedGroups=e2e -P ci-tu + run: mvn --batch-mode org.jacoco:jacoco-maven-plugin:prepare-agent verify org.jacoco:jacoco-maven-plugin:report sonar:sonar -DexcludedGroups=e2e -P ci-tu env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/.github/workflows/visual-non-regression-tests.yml b/.github/workflows/visual-non-regression-tests.yml index af5ba336..0ee30849 100644 --- a/.github/workflows/visual-non-regression-tests.yml +++ b/.github/workflows/visual-non-regression-tests.yml @@ -26,6 +26,6 @@ jobs: - name: Percy Test uses: percy/exec-action@v0.3.1 with: - command: "mvn test -Dgroups=e2e" + command: "mvn --batch-mode test -Dgroups=e2e" env: PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}