Skip to content

Commit 5f7437c

Browse files
Create test#1297.yml
1 parent d3d19df commit 5f7437c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/test#1297.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)