-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (49 loc) · 1.38 KB
/
webui-testing.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
name: Web UI Testing
on:
push:
branches: ["dev", "test", "master"]
env:
NG_CLI_ANALYTICS: "ci"
jobs:
test-webui:
name: Test Web UI
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Print commit sha
shell: bash
env:
COMMIT_SHA: ${{ github.event.pull_request.head.sha }}
run: |
echo "sha: $COMMIT_SHA"
- name: Set up Java JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Set up Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
cache-dependency-path: webui/package-lock.json
- name: Build Conformance-Gateway
run: |
./mvnw test-compile -B -V -DskipTests
# No need to run tests, as they are already run in the PR workflow
- name: Start Web UI
run: |
cd webui
echo Install dependencies
npm install
echo Start NPM with Web UI
npm run ng serve & echo $! > ngserve.pid
echo "Web UI is running on http://localhost:4200"
- name: Test Conformance-Gateway
run: |
./mvnw test -B -Pwebui
- name: Stop Web UI
run: |
kill $(cat ngserve.pid) || true