@@ -98,12 +98,12 @@ jobs:
98
98
- name : Setup Node.js environment
99
99
uses : actions/setup-node@v4
100
100
with :
101
- node-version : " 18 "
101
+ node-version : " 20 "
102
102
cache : " npm"
103
103
cache-dependency-path : package-lock.json
104
104
105
105
- name : install node modules
106
- run : npm install --also =dev
106
+ run : npm install --include =dev
107
107
108
108
- name : setup python environment
109
109
id : setup-python
@@ -121,7 +121,7 @@ jobs:
121
121
if : always()
122
122
123
123
package :
124
- needs : [code-quality, test]
124
+ # needs: [code-quality, test]
125
125
126
126
runs-on : ubuntu-latest
127
127
@@ -145,22 +145,19 @@ jobs:
145
145
- name : Setup Node.js environment
146
146
uses : actions/setup-node@v4
147
147
with :
148
- node-version : " 18 "
148
+ node-version : " 20 "
149
149
cache : " npm"
150
150
cache-dependency-path : package-lock.json
151
151
152
- # Validate wrapper
153
152
- name : Gradle Wrapper Validation
154
153
uses : gradle/actions/wrapper-validation@v4
155
154
156
- # Set up Java environment for the next steps
157
155
- name : Setup Java
158
156
uses : actions/setup-java@v4
159
157
with :
160
158
distribution : zulu
161
159
java-version : 21
162
160
163
- # Setup Gradle
164
161
- name : Setup Gradle
165
162
uses : gradle/actions/setup-gradle@v4
166
163
with :
@@ -174,7 +171,7 @@ jobs:
174
171
echo "pluginVerifierHomeDir=~/.pluginVerifier" >> $GITHUB_OUTPUT
175
172
176
173
- name : install node modules
177
- run : npm install --also =dev
174
+ run : npm install --include =dev
178
175
179
176
- name : update versions from git
180
177
if : ${{ !startsWith( github.ref, 'refs/tags/v') }}
@@ -248,12 +245,12 @@ jobs:
248
245
- name : Setup Node.js environment
249
246
uses : actions/setup-node@v4
250
247
with :
251
- node-version : " 18 "
248
+ node-version : " 20 "
252
249
cache : " npm"
253
250
cache-dependency-path : package-lock.json
254
251
255
252
- name : install node modules
256
- run : npm install --also =dev
253
+ run : npm install --include =dev
257
254
258
255
- uses : actions/download-artifact@v4
259
256
with :
0 commit comments