-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (31 loc) · 958 Bytes
/
ci.yml
File metadata and controls
36 lines (31 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# You can enable the CI workflow by uncommenting the following lines.
# This will compile, lint and test the code on every push to the main branch and for pull requests.
# Currently, the CI will fail as there are linting errors in the code.
name: Continuous Integration
on:
push:
branches: [develop, main]
pull_request:
branches: [develop, main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Java
uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: '25'
cache: 'gradle'
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 24
- name: Run Server Tests
run: ./gradlew test -x webapp
- name: Install Dependencies
run: npm install
# Temporarily disabled client tests until we switch to Vitest
# - name: Run Client Tests
# run: npm test