-
Notifications
You must be signed in to change notification settings - Fork 11
52 lines (44 loc) · 1.18 KB
/
pull-requests.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
name: Actions on pull requests
on:
pull_request:
branches:
- develop
- master
jobs:
build_java:
name: Build & Test backend
runs-on: ubuntu-latest
steps:
- name: Step 1 - Checkout repository code
uses: actions/checkout@v4
- name: Step 2 - Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Step 3 - Build & Test
run: mvn clean verify -ntp
- name: Step 4 - Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
build_angular:
name: Build & Test frontend
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./sts-client-example
steps:
- name: Step 1 - Checkout repository code
uses: actions/checkout@v4
with:
sparse-checkout: 'sts-client-example'
sparse-checkout-cone-mode: false
- name: Step 2 - setup node
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run prod