-
Notifications
You must be signed in to change notification settings - Fork 74
Fix github workflows #1344
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix github workflows #1344
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,6 +9,7 @@ | |
| "yaml-language-server": "1.14.0", | ||
| "vscode-languageserver-protocol": "3.17.4-next.3", | ||
| "vscode-languageserver-types": "3.17.4-next.2", | ||
| "vscode-languageserver": "8.1.0", | ||
| "vscode-css-languageserver": "file:target/vscode-css-languageserver-1.0.0.tgz", | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. After this vscode-languageserver is in root so nested node_modules is not required
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I downgraded to 8.2 (9.0 have just 5 days) |
||
| "vscode-html-languageserver": "file:target/vscode-html-languageserver-1.0.0.tgz", | ||
| "vscode-json-languageserver": "file:target/vscode-json-languageserver-1.3.4.tgz", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -161,6 +161,19 @@ | |
| </target> | ||
| </configuration> | ||
| </execution> | ||
| <execution> | ||
| <id>remove package-lock before install</id> | ||
| <phase>compile</phase> | ||
| <goals> | ||
| <goal>run</goal> | ||
| </goals> | ||
| <configuration> | ||
| <target> | ||
| <delete | ||
| file="${project.directory}/package-lock.json" /> | ||
| </target> | ||
| </configuration> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| <plugin> | ||
|
|
@@ -204,6 +217,8 @@ | |
| <arg>--only=prod</arg> | ||
| <arg>--no-bin-links</arg> | ||
| <arg>--ignore-scripts</arg> | ||
| <arg>--install-strategy=hoisted</arg> | ||
| <arg>--force</arg> | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Make sure dependencies are always fresh, without this tests fail on github but pass jenkins
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Force also will ignore platform requirements, so will be possible to add fsevents for mac users ;) |
||
| <!-- The actual verions for the LS and other dependency NPM Modules are to be set in './package.json file', | ||
| which is used to install the dependencies --> | ||
| </arguments> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make sure we use same version as in embedder