diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 18dc633..471cc75 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -8,6 +8,8 @@ on: jobs: build: strategy: + # let other jobs finish as well, maybe they can finish and there is only an error in one of the jobs + fail-fast: false matrix: node-version: [22.x, 24.x, 26.x] os: [macos-latest, ubuntu-latest, windows-latest] diff --git a/.vscode-test.mjs b/.vscode-test.mjs index 06392b5..4cb28e2 100644 --- a/.vscode-test.mjs +++ b/.vscode-test.mjs @@ -2,9 +2,9 @@ import { defineConfig } from "@vscode/test-cli"; export default defineConfig({ files: "out/test/**/*.test.js", - version: "insiders", + version: "stable", mocha: { parallel: false, - retries: 5 + retries: 5, }, }); diff --git a/.vscode/settings.json b/.vscode/settings.json index 671560f..c1692ca 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,12 +11,19 @@ "statusBar.background": "#1857a4", "statusBar.foreground": "#e7e7e7", "statusBarItem.hoverBackground": "#1f6fd0", - "statusBarItem.remoteBackground": "#1857a4", + "statusBarItem.remoteBackground": "#530c2c", "statusBarItem.remoteForeground": "#e7e7e7", "titleBar.activeBackground": "#1857a4", "titleBar.activeForeground": "#e7e7e7", "titleBar.inactiveBackground": "#1857a499", - "titleBar.inactiveForeground": "#e7e7e799" + "titleBar.inactiveForeground": "#e7e7e799", + "activityBarTop.activeBackground": "#1f6fd0", + "activityBarTop.background": "#1f6fd0", + "activityBarTop.foreground": "#e7e7e7", + "activityBarTop.inactiveForeground": "#e7e7e799", + "commandCenter.foreground": "#e7e7e7", + "statusBar.debuggingBackground": "#1857a4", + "statusBar.debuggingForeground": "#e7e7e7" }, "peacock.color": "#1857a4", "typescript.tsserver.experimental.enableProjectDiagnostics": true,