Skip to content

Commit 2ae64d1

Browse files
ci: ensure java 1.8
Java 1.6 cannot download the Adobe libraries due to a SSL cert issue
1 parent 2e8af70 commit 2ae64d1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/run-tests.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,17 @@ jobs:
2525
uses: actions/setup-node@v2
2626
with:
2727
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+
with:
35+
path: ~/.m2/repository
36+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
37+
restore-keys: |
38+
${{ runner.os }}-maven-
2839
- run: npm ci
2940
- run: npm run build --if-present
3041
- run: npm test

0 commit comments

Comments
 (0)