Skip to content

Commit f776e9b

Browse files
committed
update CHANGELOG
1 parent 5c39c31 commit f776e9b

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [0.25.6]
4+
5+
- Fix Reusable Workflow Reference for Windows by using vscodeURI instead of path.join
6+
- Add branches-ignore to merge group schema
7+
38
## [0.25.5]
49

510
- Fixes errors around "on-error" token parsing

src/workflow/languageServer.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,17 @@ export async function initLanguageServer(context: vscode.ExtensionContext) {
4646
if (isNode()) {
4747
const debugOptions = {execArgv: ["--nolazy", "--inspect=6010"]};
4848

49+
const env = {
50+
NODE_EXTRA_CA_CERTS: process.env.NODE_EXTRA_CA_CERTS,
51+
}
52+
4953
const serverModule = context.asAbsolutePath(path.join("dist", "server-node.js"));
5054
const serverOptions: ServerOptions = {
51-
run: {module: serverModule, transport: TransportKind.ipc},
55+
run: {module: serverModule, transport: TransportKind.ipc, options: {env}},
5256
debug: {
5357
module: serverModule,
5458
transport: TransportKind.ipc,
55-
options: debugOptions
59+
options: {env, ...debugOptions }
5660
}
5761
};
5862

0 commit comments

Comments
 (0)