fix(config): CI fixed, now improving.
This commit is contained in:
parent
240e90502f
commit
46daec8ca5
4 changed files with 31 additions and 36 deletions
19
.gitignore
vendored
19
.gitignore
vendored
|
@ -1,12 +1,13 @@
|
||||||
|
.coveralls.yml
|
||||||
|
.env
|
||||||
|
.npmrc
|
||||||
|
.nyc_output
|
||||||
|
coverage
|
||||||
|
dist
|
||||||
|
docs
|
||||||
|
guaribas.log
|
||||||
|
guaribas.sqlite
|
||||||
node_modules
|
node_modules
|
||||||
packages/default.gbui/build
|
packages/default.gbui/build
|
||||||
dist
|
|
||||||
guaribas.sqlite
|
|
||||||
guaribas.log
|
|
||||||
work
|
|
||||||
tmp
|
tmp
|
||||||
docs
|
work
|
||||||
.env
|
|
||||||
.coveralls.yml
|
|
||||||
coverage
|
|
||||||
.npmrc
|
|
18
.npmignore
18
.npmignore
|
@ -1,9 +1,13 @@
|
||||||
node_modules
|
# This file must be a copy of .gitignore except for the WILLSHIP commented lines below.
|
||||||
guaribas.sqlite
|
|
||||||
guaribas.log
|
|
||||||
work
|
|
||||||
tmp
|
|
||||||
.env
|
|
||||||
.coveralls.yml
|
.coveralls.yml
|
||||||
|
.env
|
||||||
|
.npmrc
|
||||||
|
.nyc_output
|
||||||
coverage
|
coverage
|
||||||
BotServer-*.tgz
|
# WILLSHIP dist
|
||||||
|
guaribas.log
|
||||||
|
guaribas.sqlite
|
||||||
|
node_modules
|
||||||
|
# WILLSHIP packages/default.gbui/build
|
||||||
|
tmp
|
||||||
|
work
|
22
.travis.yml
22
.travis.yml
|
@ -16,8 +16,8 @@ before_script:
|
||||||
- npm run build
|
- npm run build
|
||||||
|
|
||||||
script:
|
script:
|
||||||
#- npm run build-docs
|
- npm run build-docs
|
||||||
#- npm run coveralls
|
- npm run coveralls
|
||||||
|
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
|
@ -28,7 +28,7 @@ branches:
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- npm run travis-deploy-once "npm run semantic-release"
|
- npm run travis-deploy-once "npm run semantic-release"
|
||||||
#- npm run typedoc
|
- npm run typedoc
|
||||||
- npm pack
|
- npm pack
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
|
@ -39,20 +39,4 @@ deploy:
|
||||||
github_token: $GITHUB_TOKEN
|
github_token: $GITHUB_TOKEN
|
||||||
on:
|
on:
|
||||||
tags: false
|
tags: false
|
||||||
|
|
||||||
- provider: releases
|
|
||||||
api_key: $GITHUB_TOKEN
|
|
||||||
file_glob: true
|
|
||||||
file: "BotServer-*.tgz"
|
|
||||||
skip_cleanup: true
|
|
||||||
on:
|
|
||||||
tags: false
|
|
||||||
branch: master
|
|
||||||
|
|
||||||
- provider: npm
|
|
||||||
skip_cleanup: true
|
|
||||||
email: "operations@pragmatismo.io"
|
|
||||||
api_key: $NPM_TOKEN
|
|
||||||
on:
|
|
||||||
tags: false
|
|
||||||
branch: master
|
branch: master
|
||||||
|
|
|
@ -192,16 +192,22 @@
|
||||||
"verifyConditions": [
|
"verifyConditions": [
|
||||||
"@semantic-release/github"
|
"@semantic-release/github"
|
||||||
],
|
],
|
||||||
|
"plugins": [
|
||||||
|
"@semantic-release/commit-analyzer",
|
||||||
|
"@semantic-release/release-notes-generator",
|
||||||
|
"@semantic-release/changelog"
|
||||||
|
],
|
||||||
"prepare": [
|
"prepare": [
|
||||||
"@semantic-release/npm",
|
"@semantic-release/npm",
|
||||||
{
|
{
|
||||||
"path": "@semantic-release/exec",
|
"path": "@semantic-release/exec",
|
||||||
"cmd": "git status"
|
"cmd": "git status"
|
||||||
},
|
},
|
||||||
|
"@semantic-release/changelog",
|
||||||
{
|
{
|
||||||
"path": "@semantic-release/git",
|
"path": "@semantic-release/git",
|
||||||
"assets": [
|
"assets": [
|
||||||
"**"
|
"package.json"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Reference in a new issue