Skip to content

Commit dc3a507

Browse files
author
Shreyas-Microsoft
committed
debug logs
1 parent 1f41070 commit dc3a507

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/node.js.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,16 @@ jobs:
3030
cache: 'npm'
3131
cache-dependency-path: '**/package-lock.json'
3232
- run: npm ci
33+
34+
# Debugging Step: Print Node.js and Installed Packages
35+
- name: Debug Node.js and Dependencies
36+
run: |
37+
node -v
38+
npm list undici web-streams-polyfill
39+
# Debugging Step: Check if ReadableStream exists
40+
- name: Check Global ReadableStream
41+
run: node -e "console.log('ReadableStream exists:', typeof global.ReadableStream !== 'undefined')"
42+
43+
3344
- run: NODE_OPTIONS=--max_old_space_size=8192 npm run build --if-present
3445
- run: npm run test --if-present

0 commit comments

Comments
 (0)