-
Notifications
You must be signed in to change notification settings - Fork 101
94 lines (77 loc) · 2.27 KB
/
gate-keep.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: Gate Keeping
on:
push:
env:
NODE_VERSION: 18
JAVA_VERSION: 11
JAVA_DISTRIBUTION: 'adopt'
jobs:
test-unit:
name: Unit tests
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout ${{ github.ref_name }}
uses: actions/checkout@v4
- name: Install Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm run ci
- name: Run tests
run: npm run test-report
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Unit Tests
fail-on-error: true,
path: test-results.json # Path to test results
reporter: mocha-json # Format of test results
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
id: test-results
if: always()
with:
files: "test-results.json"
- name: Run cover
run: npm run cover
- name : upload codecov
uses: codecov/codecov-action@v4
test-lint:
name: Lint
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout ${{ github.ref_name }}
uses: actions/checkout@v4
- name: Install Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm run ci
- name: Lint tests
run: npm run lint
test-build:
name: Test-build
needs: [test-unit,test-lint]
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout ${{ github.ref_name }}
uses: actions/checkout@v4
- name: Install Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRIBUTION }}
- name: Install dependencies
run: npm run ci
- name: Call the Build bash script for QA
run: bash ${GITHUB_WORKSPACE}/deployment/build-test.sh