-
Notifications
You must be signed in to change notification settings - Fork 9
42 lines (41 loc) · 1.06 KB
/
test.yml
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
37
38
39
40
41
42
name: Test that everything can build properly and is tested
on:
pull_request:
types:
- opened
- synchronize
jobs:
Build-Java-8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '8'
- run: gradle :shadowJar -b java8-build.gradle
Build-Java-17:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'
- run: gradle :shadowJar
test-documentation:
name: Test Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
cache-dependency-path: docs/yarn.lock
- name: Install dependencies
working-directory: ./docs
run: yarn install --frozen-lockfile
- name: Test build website
working-directory: ./docs
run: yarn build