blob: 987ceb43a4ac101bb5916b47fe916728a9bf6f0d (
plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build_plugin:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Development Environment
uses: jdx/mise-action@v3
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
- name: Check ktlint
run: ./gradlew ktlintCheck --no-daemon
- name: Build with shadowJar
run: ./gradlew :platform-paper:shadowJar --parallel --no-daemon
- name: Upload build artifact
uses: actions/upload-artifact@v6
if: success()
with:
name: LunaticChat-${{ github.sha }}
path: platform-paper/build/libs/*.jar
retention-days: 7
build_docs:
runs-on: ubuntu-24.04
defaults:
run:
working-directory: "./docs"
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Development Environment
uses: jdx/mise-action@v3
with:
working_directory: .
- name: Install dependencies
run: bun install
- name: Check lints
run: bun run lint
- name: Build documentation
run: bun run build
|