We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 132576c commit 35d1233Copy full SHA for 35d1233
.github/workflows/ci.yml
@@ -14,10 +14,18 @@ jobs:
14
node-version: [20.x, 22.x, 24.x]
15
steps:
16
- uses: actions/checkout@v6
17
+
18
+ - name: Set up Java
19
+ uses: actions/setup-java@v5
20
+ with:
21
+ distribution: 'temurin'
22
+ java-version: '21'
23
24
- name: Use Node.js ${{ matrix.node-version }}
25
uses: actions/setup-node@v6
26
with:
27
node-version: ${{ matrix.node-version }}
28
29
- run: cd frontend && npm ci
30
- run: cd frontend && npm run build
31
- run: cd frontend && npm run lint
0 commit comments