File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 51
51
uses : actions/setup-node@v4
52
52
with :
53
53
node-version : ${{ env.NODE_ACTIVE_LTS }}
54
- - name : enable yarn # needed in some tests
55
- run : |-
56
- corepack enable
57
- yarn --version
58
54
- name : Checkout code
59
55
# see https://github.com/actions/checkout
60
56
uses : actions/checkout@v4
@@ -97,16 +93,20 @@ jobs:
97
93
env :
98
94
NPMJS_RELEASE_TAG : ${{ github.event.inputs.prerelease == 'true' && 'unstable-prerelease' || 'latest' }}
99
95
steps :
100
- - name : Checkout code
101
- # see https://github.com/actions/checkout
102
- uses : actions/checkout@v4
103
- with :
104
- ref : ${{ needs.bump.outputs.version }}
105
96
- name : Setup Node.js ${{ env.NODE_ACTIVE_LTS }}
106
97
# see https://github.com/actions/setup-node
107
98
uses : actions/setup-node@v4
108
99
with :
109
100
node-version : ${{ env.NODE_ACTIVE_LTS }}
101
+ - name : enable yarn # needed in some tests
102
+ run : |-
103
+ corepack enable
104
+ yarn --version
105
+ - name : Checkout code
106
+ # see https://github.com/actions/checkout
107
+ uses : actions/checkout@v4
108
+ with :
109
+ ref : ${{ needs.bump.outputs.version }}
110
110
- name : install build tools
111
111
run : npm i --ignore-scripts
112
112
# no explicit npm build. if a build is required, it should be configured as prepublish/prepublishOnly script of npm.
You can’t perform that action at this time.
0 commit comments