File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,19 @@ jobs:
2424 with :
2525 node-version : 22
2626 registry-url : ' https://registry.npmjs.org'
27+ env :
28+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
2729
2830 - name : Install dependencies (Yarn Berry)
2931 run : yarn install --immutable
3032 env :
31- NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
33+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
34+
35+ - name : Debug .npmrc
36+ run : cat .npmrc
37+
38+ - name : Debug .yarnrc.yml
39+ run : cat .yarnrc.yml
3240
3341 - name : Run tests (if test script exists)
3442 run : yarn workspaces foreach --all --topological --parallel --no-private run test
4351 run : |
4452 yarn workspaces foreach --all version patch
4553 git push --follow-tags
46-
47- - name : Debug .npmrc
48- run : cat .npmrc
49-
50- - name : Debug .yarnrc.yml
51- run : cat .yarnrc.yml
5254
5355 - name : Check NPM Authentication
5456 run : npm whoami
Original file line number Diff line number Diff line change 11nodeLinker : pnp
22npmRegistryServer : " https://registry.npmjs.org"
33npmAlwaysAuth : true
4- npmAuthToken : " ${NPM_TOKEN }"
4+ npmAuthToken : " ${NODE_AUTH_TOKEN }"
You can’t perform that action at this time.
0 commit comments