Skip to content

Commit 36b56dd

Browse files
authored
Create testing-1305.yml
1 parent 20f51b7 commit 36b56dd

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/testing-1305.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
26+
cat /home/runner/work/_temp/.npmrc

0 commit comments

Comments
 (0)