Updating the dxa-oss-parent snapshot version #224
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: build_GUI | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout... | |
uses: actions/checkout@v4 | |
- name: Installing GULP | |
run: | |
sudo npm install gulp -g; | |
- name: Preparing NPM... | |
working-directory: gui | |
run: | |
npm install | |
- name: Building GUI... | |
working-directory: gui | |
run: | |
sudo mvn -B clean install --batch-mode -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn; |