-
Notifications
You must be signed in to change notification settings - Fork 1
67 lines (67 loc) · 2.11 KB
/
build-henkilo-ui.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
58
59
60
61
62
63
64
65
66
67
name: henkilo-ui
on:
workflow_dispatch:
push:
branches: [master]
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: "21"
distribution: "corretto"
cache: "maven"
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "npm"
cache-dependency-path: henkilo-ui/src/main/static/package-lock.json
- name: Cache SonarCloud packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache playwright browsers
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-pw-browsers
restore-keys: ${{ runner.os }}-pw-browsers
- name: Build frontend
working-directory: henkilo-ui/src/main/static
run: |
npm ci
npm run lint
npm run prettier
npm run e2e:install-deps
CI=true npm run e2e:ci
npm run build
- name: Upload e2e test artifact
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-results
path: henkilo-ui/src/main/static/playwright-results
retention-days: 10
- name: Build backend
working-directory: henkilo-ui
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn clean install -B -Dbranch=$GITHUB_REF_NAME -Drevision=$GITHUB_SHA -DbuildNumber=$GITHUB_RUN_NUMBER/$GITHUB_RUN_ATTEMPT org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=Opetushallitus_henkilo-ui
- name: Upload henkilo-ui-jar
uses: actions/upload-artifact@v4
with:
name: henkilo-ui-jar
path: henkilo-ui/target/henkiloui-*.jar