Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit d7773c0

Browse files
committed
use yarn on appveyor
1 parent 9f1b94c commit d7773c0

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

appveyor.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
install:
2+
- ps: Install-Product node 7.9.0 x64
23
- ps: Install-Product node 10.2 x64
34

45
build_script:
5-
- npm install
6+
- yarn install
67

78
test_script:
8-
- npm test
9+
- yarn test

src/tests/adapter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ suite('Node Debug Adapter', () => {
3232
const result = CP.spawnSync('node', ['--version']);
3333
const semVerString = result.stdout ? result.stdout.toString() : undefined;
3434
if (semVerString) {
35-
console.log(`semVerString`);
35+
console.log(`NVM_HOME: ${env.NVM_HOME}`);
3636
const match = semVerString.trim().match(/v(\d+)\.(\d+)\.(\d+)/);
3737
if (match && match.length === 4 && parseInt(match[1]) >= 8) {
3838
env = PathUtils.extendObject({}, process.env);

0 commit comments

Comments
 (0)