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 25ea4e6 commit c40298eCopy full SHA for c40298e
.github/workflows/part-build.yml
@@ -67,6 +67,16 @@ jobs:
67
steps:
68
- uses: actions/checkout@v5
69
70
+ # setup-node and update npm are only here to preemptively test
71
+ # the required install of npm@11 that's needed for OIDC npm publish
72
+ - uses: actions/setup-node@v6
73
+ with:
74
+ node-version: 24.x
75
+ registry-url: "https://registry.npmjs.org"
76
+
77
+ - name: Update npm
78
+ run: npm install -g npm@latest
79
80
- run: npm ci
81
working-directory: ${{ github.workspace }}
82
.github/workflows/part-publish.yml
@@ -17,6 +17,7 @@ jobs:
17
18
- uses: actions/setup-node@v6
19
with:
20
21
registry-url: "https://registry.npmjs.org"
22
23
- name: Update npm
0 commit comments