Skip to content

Commit

Permalink
Merge 3b038a8 into 1451b8e
Browse files Browse the repository at this point in the history
  • Loading branch information
mbland committed Nov 27, 2023
2 parents 1451b8e + 3b038a8 commit 8f624df
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ jobs:
uses: gradle/gradle-build-action@v2

- name: Install Node packages
run: ./gradlew pnpmInstall
run: ./gradlew --warning-mode=fail pnpmInstall

- name: Build and test
run: ./gradlew build
run: ./gradlew --warning-mode=fail build

- name: Merge test reports
run: ./gradlew merge-test-reports
run: ./gradlew --warning-mode=fail merge-test-reports
if: always()

- name: Generate coverage report
run: ./gradlew jacocoXmlTestReport
run: ./gradlew --warning-mode=fail jacocoXmlTestReport
if: always()

# Per the advice from:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
org.gradle.caching=true
org.gradle.warning.mode=fail
org.gradle.warning.mode=all
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ hamcrestVer = "2.2"
antJunitVer = "1.10.14"
seleniumVer = "4.15.0"
weldVer = "5.1.2.Final"
jandexVer = "3.1.5"
jandexVer = "3.1.6"
jacksonVer = "2.16.0"

[libraries.servlet]
Expand Down

0 comments on commit 8f624df

Please sign in to comment.