diff options
Diffstat (limited to 'appveyor.yml')
| -rw-r--r-- | appveyor.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/appveyor.yml b/appveyor.yml index 58bfd6e..1bf3921 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,22 +1,22 @@ environment: - nodejs_version: "6" + nodejs_version: "15" branches: only: - master -image: Visual Studio 2015 +image: Visual Studio 2019 install: - ps: Install-Product node $env:nodejs_version - - npm install - - set path=%programfiles(x86)%\\Microsoft SDKs\TypeScript\2.4;%path% + - yarn + - set path=%programfiles(x86)%\\Microsoft SDKs\TypeScript\4.2;%path% build_script: - - npm run vscode:prepublish + - yarn vscode:prepublish test_script: - - npm run test + - yarn test notifications: - provider: Webhook @@ -27,4 +27,4 @@ notifications: APPVEYOR-COMMIT-ID: '{{commitId}}' on_build_success: true on_build_failure: true - on_build_status_changed: true
\ No newline at end of file + on_build_status_changed: true |