Skip to content

Commit 1f18883

Browse files
zulusmickaelistria
authored andcommitted
Fix github workflows
1 parent bd4d902 commit 1f18883

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

.github/workflows/MacOsPR.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
maven-version: 3.9.2
2525
- uses: actions/setup-node@v3
2626
with:
27-
node-version: '20'
27+
node-version: '18'
2828
- name: Build with Maven
2929
run: mvn -B clean verify

.github/workflows/windowsPR.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
maven-version: 3.9.2
2525
- uses: actions/setup-node@v3
2626
with:
27-
node-version: '16'
27+
node-version: '18'
2828
- name: Build with Maven
2929
run: mvn -B clean verify

org.eclipse.wildwebdeveloper/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"yaml-language-server": "1.14.0",
1010
"vscode-languageserver-protocol": "3.17.4-next.3",
1111
"vscode-languageserver-types": "3.17.4-next.2",
12+
"vscode-languageserver": "8.1.0",
1213
"vscode-css-languageserver": "file:target/vscode-css-languageserver-1.0.0.tgz",
1314
"vscode-html-languageserver": "file:target/vscode-html-languageserver-1.0.0.tgz",
1415
"vscode-json-languageserver": "file:target/vscode-json-languageserver-1.3.4.tgz",

org.eclipse.wildwebdeveloper/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,19 @@
161161
</target>
162162
</configuration>
163163
</execution>
164+
<execution>
165+
<id>remove package-lock before install</id>
166+
<phase>compile</phase>
167+
<goals>
168+
<goal>run</goal>
169+
</goals>
170+
<configuration>
171+
<target>
172+
<delete
173+
file="${project.directory}/package-lock.json" />
174+
</target>
175+
</configuration>
176+
</execution>
164177
</executions>
165178
</plugin>
166179
<plugin>
@@ -204,6 +217,8 @@
204217
<arg>--only=prod</arg>
205218
<arg>--no-bin-links</arg>
206219
<arg>--ignore-scripts</arg>
220+
<arg>--install-strategy=hoisted</arg>
221+
<arg>--force</arg>
207222
<!-- The actual verions for the LS and other dependency NPM Modules are to be set in './package.json file',
208223
which is used to install the dependencies -->
209224
</arguments>

0 commit comments

Comments
 (0)