Skip to content
This repository was archived by the owner on Apr 22, 2022. It is now read-only.

Commit 53e7b06

Browse files
add maven CI
1 parent e56f185 commit 53e7b06

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.github/workflows/ci-actions.yml

+14-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ on:
88
types: [opened, synchronize, reopened, ready_for_review]
99

1010
jobs:
11+
maven:
12+
name: "Maven"
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: actions/setup-java@v1
17+
with:
18+
java-version: 8
19+
- name: Build
20+
run: mvn clean install
21+
1122
unit-test:
1223

1324
runs-on: ubuntu-latest
@@ -28,7 +39,7 @@ jobs:
2839
- uses: codecov/codecov-action@v1
2940
with:
3041
flags: unitests
31-
42+
3243
e2e:
3344
runs-on: ${{ matrix.os }}
3445
strategy:
@@ -52,7 +63,7 @@ jobs:
5263
browser: ${{ matrix.browser }}
5364
env:
5465
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
55-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5667
- uses: actions/upload-artifact@v1
5768
if: failure()
5869
with:
@@ -65,4 +76,4 @@ jobs:
6576
path: cypress/videos
6677
- uses: codecov/codecov-action@v1
6778
with:
68-
flags: e2etests
79+
flags: e2etests

0 commit comments

Comments
 (0)