File tree 2 files changed +9
-11
lines changed
2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -51,12 +51,12 @@ jobs:
51
51
with :
52
52
fetch-depth : 0
53
53
ref : ' main'
54
- - uses : pnpm/action-setup@v4
55
- - uses : actions/setup-node@v4
54
+ - uses : wyvox/action-setup-pnpm@v3
56
55
with :
57
- node-version : 22
58
- cache : pnpm
59
- - run : pnpm install --frozen-lockfile
56
+ # We have to keep ignore-scripts so that we skip post-install.
57
+ # Post-install won't pass on CI and is meant for local smoke tests
58
+ args : ' --ignore-scripts'
59
+ node-version : 22.13.0
60
60
- name : " Generate Explanation and Prep Changelogs"
61
61
id : explanation
62
62
run : |
Original file line number Diff line number Diff line change @@ -28,14 +28,12 @@ jobs:
28
28
29
29
steps :
30
30
- uses : actions/checkout@v4
31
- - uses : pnpm/action-setup@v4
32
- - uses : actions/setup-node@v4
31
+ - uses : wyvox/action-setup-pnpm@v3
33
32
with :
34
- node-version : 22
33
+ args : ' --ignore-scripts'
34
+ node-version : 22.13.0
35
35
# This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
36
- registry-url : ' https://registry.npmjs.org'
37
- cache : pnpm
38
- - run : pnpm install --frozen-lockfile
36
+ node-registry-url : ' https://registry.npmjs.org'
39
37
- name : Publish to NPM
40
38
run : NPM_CONFIG_PROVENANCE=true pnpm release-plan publish
41
39
env :
You can’t perform that action at this time.
0 commit comments