-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: updating publish and deploy steps
- Loading branch information
David Atchley
committed
Mar 13, 2017
1 parent
8376a08
commit 6c259e9
Showing
3 changed files
with
35 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
registry=https://registry.npmjs.org | ||
init.author.name=David Atchley | ||
init.author.email=[email protected] |
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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
--- | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- stable | ||
sudo: false | ||
cache: | ||
directories: | ||
- docs/vendor/bundle | ||
- node_modules | ||
- stable | ||
script: | ||
- | | ||
if [ "$TRAVIS_PULL_REQUEST" = false ]; then | ||
set -e | ||
npm run test:cov | ||
cat ./coverage/lcov.info | ./node_modules/.bin/coveralls | ||
fi | ||
- npm test | ||
before_install: | ||
- npm i -g makeshift && makeshift -s @datchley -r https://registry.npmjs.org | ||
after_success: | ||
- npm run report-coverage | ||
deploy: | ||
provider: npm | ||
email: [email protected] | ||
api_key: $NPM_TOKEN | ||
on: | ||
tags: true | ||
repo: datchley/react-scale-text |
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