Skip to content

Merge pull request #159 from orppst/124-manager-view-implement-review… #284

Merge pull request #159 from orppst/124-manager-view-implement-review…

Merge pull request #159 from orppst/124-manager-view-implement-review… #284

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout this repo
uses: actions/checkout@v4
with:
path: main
- name: Checkout common build repo
uses: actions/checkout@v4
with:
repository: orppst/build-logic
path: build-logic
- name: Checkout common lib
uses: actions/checkout@v4
with:
repository: orppst/pst-lib
path: pst-lib
- name: setup Node/yarn
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
- name: install yarn packages
run: yarn --cwd main/src/main/webui install --registry="https://registry.yarnpkg.com" #--frozen-lockfile # optional, --immutable
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
with:
build-root-directory: main
cache-disabled: false
- name: Run Gradle build
working-directory: ./main
run: ./gradlew --info build