Skip to content

Commit 35d1233

Browse files
committed
Update CI's Java version
1 parent 132576c commit 35d1233

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,18 @@ jobs:
1414
node-version: [20.x, 22.x, 24.x]
1515
steps:
1616
- 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+
1724
- name: Use Node.js ${{ matrix.node-version }}
1825
uses: actions/setup-node@v6
1926
with:
2027
node-version: ${{ matrix.node-version }}
28+
2129
- run: cd frontend && npm ci
2230
- run: cd frontend && npm run build
2331
- run: cd frontend && npm run lint

0 commit comments

Comments
 (0)