Skip to content

Implement playwright framework and initial tests #442

Implement playwright framework and initial tests

Implement playwright framework and initial tests #442

Workflow file for this run

name: BDeploy CI - Linux
on: [push]
jobs:
build:
name: Build and test on Linux
runs-on: ubuntu-latest
steps:
- name: Checkout from GIT
uses: actions/checkout@v3
- name: Setup JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 21
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Build and Test
id: build
run: ./gradlew --stacktrace --scan clean build
- name: Upload playwright results
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-results
path: ui/webapp/playwright/results