We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad420d5 commit d56f7ebCopy full SHA for d56f7eb
1 file changed
.github/workflows/test-action.yaml
@@ -22,4 +22,21 @@ jobs:
22
run: npm ci
23
24
- name: Run unit tests
25
- run: npm test
+ run: npm test
26
+ backend-tests:
27
+ runs-on: ubuntu-24.04
28
+ defaults:
29
+ run:
30
+ working-directory: backend
31
+ steps:
32
+ - name: Checkout
33
+ uses: actions/checkout@v5
34
+
35
+ - name: Set up JDK ${{vars.JAVA_VERSION}}
36
+ uses: actions/setup-java@v4
37
+ with:
38
+ java-version: ${{vars.JAVA_VERSION}}
39
+ distribution: 'adopt'
40
41
+ - name: Use Maven to run unittests and integration tests
42
+ run: mvn clean verify
0 commit comments