We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b79635 commit 31d106fCopy full SHA for 31d106f
.github/workflows/NMSReportingSuite-deployment.yaml
@@ -23,10 +23,14 @@ jobs:
23
- name: Build with Maven
24
run: mvn clean install -f NMSReportingSuite/pom.xml
25
26
- # Step 4: Install Grunt CLI
+ # Step 4: Install Grunt CLI only if not already installed
27
- name: Install Grunt CLI
28
run: |
29
- npm install -g grunt-cli
+ if ! command -v grunt &> /dev/null; then
30
+ npm install -g grunt-cli
31
+ else
32
+ echo "Grunt CLI is already installed"
33
+ fi
34
35
# Step 5: Build FrontEnd files
36
- name: Install Frontend Dependencies and Build with Grunt
0 commit comments