Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

2.6.3 develop to master merge #79

Merged
merged 12 commits into from
Dec 14, 2023
44 changes: 0 additions & 44 deletions .github/workflows/build-on-pull-request

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/build-on-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build On Pull Request
on:
pull_request:
branches: [ "master","develop" ]

jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}

- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 16

- name: Build with NPM
run: |
npm config set legacy-peer-deps true
npm install -g @angular/cli
npm install --force
npm run build
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,8 @@ jobs:
run: |
npm config set legacy-peer-deps true
npm install -g @angular/cli
npm install -g grunt-cli
npm install [email protected] --save-dev
npm install [email protected]
npm install node-sass --force
npm install --force
npm run build


- name: Create WAR file
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '8'
java-version: '17'
distribution: 'adopt'


Expand All @@ -31,16 +31,12 @@ jobs:
with:
node-version: 16

- name: Build with NPM and Maven
- name: Build with NPM
run: |
npm config set legacy-peer-deps true
npm install -g @angular/cli
npm install [email protected] --save-dev
npm install [email protected]
npm install node-sass
npm install --force
npm run build
mvn clean install

- name: Create WAR file
run: mvn -B package --file pom.xml
Expand Down
2 changes: 1 addition & 1 deletion .java-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8
17.0
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v8.9.0
v16
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.7.18
Loading
Loading