-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (45 loc) · 1.19 KB
/
pr_build.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: PR checks
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.BRANCH }}
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: gradle
- name: Run Java backend tests
run: ./gradlew test
working-directory: api
- name: Build with Gradle
run: ./gradlew build
working-directory: api
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install UI Dependencies
run: pnpm install --no-frozen-lockfile
working-directory: ui
- name: Lint with PNPM
run: pnpm lint
working-directory: ui
- name: Run frontend tests
run: pnpm test
working-directory: ui
- name: Build with PNPM
run: pnpm build
working-directory: ui