Skip to content

Commit 2a94749

Browse files
committed
[NAE-2116] Frontend remote configuration
- testing pipeline
1 parent 6c71034 commit 2a94749

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/pr-build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,21 @@ jobs:
1717
name: Full Test on Node.js version ${{ matrix.node-version }}
1818
with:
1919
node-version: ${{ matrix.node-version }}
20-
- name: Install dependencies
20+
- name: Install dependencies with status output
2121
run: |
2222
npm install --legacy-peer-deps --verbose &
2323
pid=$!
2424
while kill -0 $pid 2> /dev/null; do
2525
echo "Still installing..."; sleep 60
2626
done
2727
wait $pid
28+
exit_code=$?
29+
if [ $exit_code -eq 0 ]; then
30+
echo "npm install completed successfully (exit code: $exit_code)"
31+
else
32+
echo "npm install FAILED with exit code $exit_code"
33+
fi
34+
exit $exit_code
2835
- name: Build & test components-core
2936
run: |
3037
npm run ncc:build

0 commit comments

Comments
 (0)