Skip to content

Commit 1fc8843

Browse files
author
PROD\CGriffit
committed
Try windows and ng build parallel env var disabled
1 parent 461802c commit 1fc8843

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

.github/workflows/npm-build.yml

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ on:
77
branches: [ v100, v93 ]
88

99
jobs:
10-
build:
11-
runs-on: ubuntu-latest
12-
10+
setup:
11+
name: Setup
12+
runs-on: windows-latest
1313
steps:
1414
- uses: actions/checkout@v6
1515

@@ -50,23 +50,25 @@ jobs:
5050
working-directory: ./imxweb
5151
run: npm run nx:build-all
5252
timeout-minutes: 25
53+
env:
54+
NG_BUILD_PARALLEL: false
5355

5456
# - name: Test All
5557
# working-directory: ./imxweb
5658
# run: npm run nx:test-ci
5759
# timeout-minutes: 40
5860

59-
- name: Zip applications
60-
run: |
61-
apps=("qbm-app-landingpage" "qer-app-portal" "qer-app-pwdportal" "custom-app")
62-
for app in "${apps[@]}"; do
63-
if [ -d "./imxweb/dist/$app" ]; then
64-
( cd "./imxweb/dist/$app" && zip -r "../Html_${app}.zip" . )
65-
fi
66-
done
61+
# - name: Zip applications
62+
# run: |
63+
# apps=("qbm-app-landingpage" "qer-app-portal" "qer-app-pwdportal" "custom-app")
64+
# for app in "${apps[@]}"; do
65+
# if [ -d "./imxweb/dist/$app" ]; then
66+
# ( cd "./imxweb/dist/$app" && zip -r "../Html_${app}.zip" . )
67+
# fi
68+
# done
6769

68-
- name: Upload artifacts
69-
uses: actions/upload-artifact@v6
70-
with:
71-
name: imxweb-apps
72-
path: ./imxweb/dist/Html_*.zip
70+
# - name: Upload artifacts
71+
# uses: actions/upload-artifact@v6
72+
# with:
73+
# name: imxweb-apps
74+
# path: ./imxweb/dist/Html_*.zip

0 commit comments

Comments
 (0)