Skip to content

Use .some(...) instead of .findIndex(...)!==-1 to check for existence #516

Use .some(...) instead of .findIndex(...)!==-1 to check for existence

Use .some(...) instead of .findIndex(...)!==-1 to check for existence #516

Workflow file for this run

name: Windows (x64)
on: [push]
jobs:
build:
name: Build and test on Windows
runs-on: windows-latest
steps:
- name: Checkout from GIT
uses: actions/checkout@v5
- name: Setup JDK
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version-file: .java-version
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Build and Test
id: build
run: ./gradlew --stacktrace --scan clean build -Pworkers=1
- name: Upload playwright results
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-results
path: ui/webapp/playwright/results