We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 790efff commit 218649fCopy full SHA for 218649f
.github/workflows/dev-pipeline.yml
@@ -4,8 +4,32 @@ on:
4
branches:
5
- jib-testing
6
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
17
+ node-version: 18
18
19
+ - name: Set up JDK 21
20
+ uses: actions/setup-java@v4
21
22
+ java-version: 21
23
+ distribution: temurin
24
+ cache: maven
25
26
+ - name: Run tests
27
+ run: |
28
+ mvn test -P prettierSkip
29
container-image:
30
runs-on: ubuntu-latest
31
+ needs:
32
+ - test
33
steps:
34
- uses: actions/checkout@v4
35
with:
0 commit comments