Release 6.2.0 #393
Workflow file for this run
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: BDeploy CI - Windows | |
on: [push] | |
jobs: | |
build: | |
name: Build and test on Windows | |
runs-on: windows-latest | |
steps: | |
- name: Checkout from GIT | |
uses: actions/checkout@v3 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build and Test | |
env: | |
NODE_OPTIONS: '--max_old_space_size=1400' | |
run: ./gradlew --stacktrace clean build -x runCypressHeadless '-Dtestlogger.theme=plain-parallel' | |