Skip to content

Commit 218649f

Browse files
committed
Try running tests before docker push
1 parent 790efff commit 218649f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/dev-pipeline.yml

+24
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,32 @@ on:
44
branches:
55
- jib-testing
66
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
timeout-minutes: 20
10+
steps:
11+
- uses: actions/checkout@v4
12+
with:
13+
fetch-depth: 0
14+
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: 18
18+
19+
- name: Set up JDK 21
20+
uses: actions/setup-java@v4
21+
with:
22+
java-version: 21
23+
distribution: temurin
24+
cache: maven
25+
26+
- name: Run tests
27+
run: |
28+
mvn test -P prettierSkip
729
container-image:
830
runs-on: ubuntu-latest
31+
needs:
32+
- test
933
steps:
1034
- uses: actions/checkout@v4
1135
with:

0 commit comments

Comments
 (0)