Skip to content

Commit e534909

Browse files
committed
ci: Move the pipe to the right file #9
1 parent ad420d5 commit e534909

2 files changed

Lines changed: 18 additions & 21 deletions

File tree

.github/workflows/backend-test-action.yaml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/test-action.yaml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,21 @@ jobs:
2222
run: npm ci
2323

2424
- name: Run unit tests
25-
run: npm test
25+
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

Comments
 (0)