Release 7.2.0 #416
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 - 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: '20' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build and Test | |
env: | |
NODE_OPTIONS: '--max_old_space_size=1400' | |
run: ./gradlew --stacktrace --scan clean build -x runCypressHeadless '-Dtestlogger.theme=plain-parallel' | |