Skip to content

DT-1533-Update data validations in booking (#180) #44

DT-1533-Update data validations in booking (#180)

DT-1533-Update data validations in booking (#180) #44

Workflow file for this run

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: |
mvn 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: |
mvn test -B -Djunit.includedTags=WebUI
- name: Stop Web UI
run: |
kill $(cat ngserve.pid) || true