Merge pull request #192 from dcsaorg/DT-1842-BKG-invalid-user-prompt-… #52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |