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 032822e commit 6c1f09eCopy full SHA for 6c1f09e
.github/workflows/setup-node-test.yml
@@ -14,9 +14,16 @@ jobs:
14
# - uses : salmanmkc/setup-node@bump-actions-cache-v5
15
with:
16
node-version: 20
17
- cache: npm
18
- - name: Install dependencies
19
- run: npm install
+
+ - name: Reproduce url.parse DeprecationWarning (Linux/macOS)
+ if: runner.os != 'Windows'
20
+ shell: bash
21
+ run: |
22
+ node --trace-deprecation -e "require('url').parse('https://example.com')"
23
-
24
+ - name: Reproduce url.parse DeprecationWarning (Windows)
25
+ if: runner.os == 'Windows'
26
+ shell: pwsh
27
28
29
0 commit comments