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 20f51b7 commit 36b56ddCopy full SHA for 36b56dd
.github/workflows/testing-1305.yml
@@ -0,0 +1,26 @@
1
+name: testing-1305
2
+on: push
3
+
4
+jobs:
5
+ repro:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: Checkout repository
9
+ uses: actions/checkout@v5
10
11
+ - name: Install Node.js
12
+ uses: actions/setup-node@v6
13
+ with:
14
+ node-version: '24'
15
+ registry-url: 'https://registry.npmjs.org/'
16
17
+ - name: Install the latest version of the npm CLI
18
+ run: |
19
+ npm install -g npm@latest
20
+ # Run various npm commands to trigger the warning
21
+ - run: npm --version
22
+ - run: npm config ls
23
24
+ - name: Inspect the config set up by setup-node
25
26
+ cat /home/runner/work/_temp/.npmrc
0 commit comments