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 /.travis.yml | |
| parent | 703019a593c1e4118b580015b1af8bcfbb86b135 (diff) | |
| download | doxdocgen-dbcf5dc87d83ee59fc23e4eaa225a15655d17d2d.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 '.travis.yml')
| -rw-r--r-- | .travis.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 9639923..4f18b14 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ os: osx language: node_js node_js: - - "6" + - "15" stages: - lint @@ -23,7 +23,7 @@ before_install: fi install: - - npm install + - yarn jobs: allow_failures: @@ -38,12 +38,12 @@ jobs: script: npm run vscode:prepublish os: linux - stage: test - script: npm run test + script: yarn cov os: osx - stage: release script: - - npm install vsce - - vsce package --no-yarn + - yarn add vsce -D + - vsce package - ls -alh os: linux deploy: @@ -54,7 +54,7 @@ jobs: on: tags: true - provider: script - script: vsce publish --no-yarn -p $VSMARKETPLACE_ACCESS_TOKEN + script: vsce publish -p $VSMARKETPLACE_ACCESS_TOKEN skip_cleanup: true on: tags: true @@ -68,4 +68,4 @@ notifications: - https://webhooks.gitter.im/e/87b3ab4176e6f9506c13 on_success: always on_failure: always - on_start: never
\ No newline at end of file + on_start: never |