-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (49 loc) · 1.5 KB
/
Copy pathbuild.yml
File metadata and controls
49 lines (49 loc) · 1.5 KB
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
name: Build
on: [ push ]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
cache-dependency-path: src/frontend/yarn.lock
- name: Install Frontend Dependencies
working-directory: src/frontend
run: yarn install
- name: Test Frontend
working-directory: src/frontend
run: yarn test:nowatch
- name: Lint Frontend
working-directory: src/frontend
run: yarn lint:nofix
- name: Build Frontend
working-directory: src/frontend
run: yarn build
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
- name: Build Plugin
run: ./mvnw --batch-mode install -P build-executable-jar
- name: Report Unit Tests
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Unit Tests
path: target/surefire-reports/*.xml
reporter: java-junit
fail-on-error: true
- name: CLI Smoke Test
run: java -jar target/dependency-analyzer-*-jar-with-dependencies.jar dependency-analyzer/target/classes
- name: Upload CLI Smoke Test Result
uses: actions/upload-artifact@v3
with:
name: CLI Integration-Test Result
path: index.html