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 2e8af70 commit 2ae64d1Copy full SHA for 2ae64d1
.github/workflows/run-tests.yml
@@ -25,6 +25,17 @@ jobs:
25
uses: actions/setup-node@v2
26
with:
27
node-version: ${{ matrix.node-version }}
28
+ - uses: actions/setup-java@v1
29
+ with:
30
+ java-version: 11
31
+ # Set up dependency cache
32
+ - name: Cache local Maven repository
33
+ uses: actions/cache@v2
34
35
+ path: ~/.m2/repository
36
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
37
+ restore-keys: |
38
+ ${{ runner.os }}-maven-
39
- run: npm ci
40
- run: npm run build --if-present
41
- run: npm test
0 commit comments