diff options
| author | Christoph Schlosser <2466365+cschlosser@users.noreply.github.com> | 2021-04-17 22:12:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-17 22:12:38 +0200 |
| commit | dbcf5dc87d83ee59fc23e4eaa225a15655d17d2d (patch) | |
| tree | d22cb94be324153581658e80a8596765755971a0 /appveyor.yml | |
| parent | 703019a593c1e4118b580015b1af8bcfbb86b135 (diff) | |
| download | doxdocgen-1.2.0.tar.gz | |
Prepare release 1.2.0 (#213)1.2.0
* Prepare release 1.2.0
* Update versions
* Lint
* update appveyor
* Update travis
* Use yarn
* Add nyc
* Run cov instead of test
* remove package-lock.json
* Remove istanbul
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 |