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 d3d19df commit 5f7437cCopy full SHA for 5f7437c
.github/workflows/test#1297.yml
@@ -0,0 +1,25 @@
1
+name: Reproduce npm ci hang
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ test-npm-ci-hang:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout repo
11
+ uses: actions/checkout@v3
12
13
+ - name: Setup Node.js 22.x
14
+ uses: actions/setup-node@v4
15
+ with:
16
+ node-version: 22.x
17
18
+ - name: Show node and npm versions
19
+ run: |
20
+ node --version
21
+ npm --version
22
23
+ - name: Run npm ci (watch for hang)
24
+ run: npm ci
25
+ timeout-minutes: 10
0 commit comments