Skip to content

Commit

Permalink
feature/IVYPORTAL-17377-Create-pipeline-to-run-Lighthouse-report
Browse files Browse the repository at this point in the history
  • Loading branch information
nhthinh-axonivy committed Dec 25, 2024
1 parent 60774f5 commit 9003c0e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lighthouse-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/checkout@v3
- name: Build Docker Image for Portal Modules
run: docker build -t build-portal-modules -f build/Dockerfile .
- name: Build Maven Modules Inside Docker
- name: Build Modules Inside Docker
id: build-maven
run: |
docker run --rm \
Expand All @@ -42,9 +42,9 @@ jobs:
-w /workspace \
build-portal-modules sh -c '
BUILT_MODULES=""
for MODULE in ${{ env.MODULES }}; do
mvn clean install -f ${MODULE}/pom.xml
BUILT_MODULES="$BUILT_MODULES $MODULE"
for MODULE in $(echo "${{ env.MODULES }}"); do
echo "Building module: $MODULE"
mvn clean install -f "${MODULE}/pom.xml"
done
echo "::set-output name=built_modules::$BUILT_MODULES"
'
Expand Down

0 comments on commit 9003c0e

Please sign in to comment.