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 a750597 commit 4a9e38aCopy full SHA for 4a9e38a
.github/workflows/build.yml
@@ -22,12 +22,22 @@ jobs:
22
echo ${VER} > VER
23
fi
24
25
+ - name: Setup Java
26
+ uses: actions/setup-java@v4
27
+ with:
28
+ java-version: '21'
29
+ distribution: 'temurin'
30
+ architecture: x64
31
+
32
+ - name: Verify Reference Codes
33
+ run: mvn verify
34
35
- name: Setup Node.js
36
uses: actions/setup-node@v2
37
with:
38
node-version: '18'
39
- - name: Install Dependencies
40
+ - name: Install Docs Dependencies
41
run: yarn install
42
43
- name: Build Docs
0 commit comments