-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: improve commitlint file fix(workit-cli): npm run test Signed-off-by: Olivier Albertini <[email protected]>
- Loading branch information
1 parent
c3e52b0
commit 83a63c5
Showing
14 changed files
with
605 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN} | ||
//registry.npmjs.org/:username=olivieralbertini | ||
//registry.npmjs.org/:[email protected] | ||
//registry.npmjs.org/:always-auth=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- "10" | ||
- "11" | ||
|
||
install: | ||
- npm i | ||
- npm run bootstrap | ||
- npm run build # @TODO lerna bug will use symlink when depending on internal packages, but package is typescript, no lib before build | ||
|
||
script: | ||
- npm run test | ||
|
||
after_success: | ||
# - npm run coverage | ||
- git remote set-url origin git@${GH_TOKEN}@github.com:${TRAVIS_REPO_SLUG}.git | ||
|
||
git: | ||
depth: 5 | ||
|
||
cache: | ||
directories: | ||
- node_modules | ||
|
||
before_deploy: | ||
- cp .npmrc.template ~/.npmrc | ||
|
||
deploy: | ||
provider: script | ||
email: [email protected] | ||
api_key: $NPM_AUTH_TOKEN | ||
skip_cleanup: true | ||
script: npx lerna publish --yes | ||
on: | ||
tags: true | ||
branch: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.