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 1f41070 commit dc3a507Copy full SHA for dc3a507
.github/workflows/node.js.yml
@@ -30,5 +30,16 @@ jobs:
30
cache: 'npm'
31
cache-dependency-path: '**/package-lock.json'
32
- 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
44
- run: NODE_OPTIONS=--max_old_space_size=8192 npm run build --if-present
45
- run: npm run test --if-present
0 commit comments