Skip to content

Commit 6c71034

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

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,7 +17,14 @@ jobs:
1717
name: Full Test on Node.js version ${{ matrix.node-version }}
1818
with:
1919
node-version: ${{ matrix.node-version }}
20-
- run: npm install --legacy-peer-deps --verbose --force
20+
- name: Install dependencies
21+
run: |
22+
npm install --legacy-peer-deps --verbose &
23+
pid=$!
24+
while kill -0 $pid 2> /dev/null; do
25+
echo "Still installing..."; sleep 60
26+
done
27+
wait $pid
2128
- name: Build & test components-core
2229
run: |
2330
npm run ncc:build

0 commit comments

Comments
 (0)