Skip to content
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
vscode-version: [stable]
env:
NODE_OPTIONS: '--max-old-space-size=8192'
Expand All @@ -62,7 +62,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16.x]
node-version: [18.x]
vscode-version: [minimum, stable, insiders]
env:
VSCODE_TEST_VERSION: ${{ matrix.vscode-version }}
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
strategy:
fail-fast: true
matrix:
node-version: [16.x]
node-version: [18.x]
vscode-version: [stable, insiders]
env:
VSCODE_TEST_VERSION: ${{ matrix.vscode-version }}
Expand All @@ -158,7 +158,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16.x]
node-version: [18.x]
vscode-version: [stable, insiders]
env:
VSCODE_TEST_VERSION: ${{ matrix.vscode-version }}
Expand Down
2 changes: 1 addition & 1 deletion buildspec/linuxIntegrationTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ phases:
install:
run-as: root
runtime-versions:
nodejs: 16
nodejs: 18
dotnet: 6.0
java: latest

Expand Down
2 changes: 1 addition & 1 deletion buildspec/linuxTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ phases:
install:
run-as: root
runtime-versions:
nodejs: 16
nodejs: 18
commands:
- bash buildspec/shared/linux-install.sh

Expand Down
2 changes: 1 addition & 1 deletion buildspec/packageTestVsix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ phases:
install:
run-as: root
runtime-versions:
nodejs: 16
nodejs: 18
commands:
- bash buildspec/shared/linux-install.sh

Expand Down
2 changes: 1 addition & 1 deletion buildspec/windowsTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ env:
phases:
install:
runtime-versions:
nodejs: 16
nodejs: 18
commands:
- |
if(-Not($Env:CODECOV_TOKEN -eq $null)) {
Expand Down
1 change: 1 addition & 0 deletions packages/core/scripts/test/launchTestUtilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ async function invokeVSCodeCli(vsCodeExecutablePath: string, args: string[]): Pr

if (spawnResult.status !== 0) {
console.log('output: %s', spawnResult.output)
console.log('error: %s ', spawnResult.error)
throw new Error(`VS Code CLI command failed (exit-code: ${spawnResult.status}): ${cli} ${cmdArgs}`)
}

Expand Down
Loading