-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dependencies, CI & Eslint upgrade, automate release process (#84)
* Update dependencies * Small styling changes * Fix no-param-reassign rule * Fix example command for noobies * Test module on LTS and current version * Code style fix * Fix CircleCI command * Bump version to 0.2 * Automate release process * Fix CircleCI command * Fix CI tests on LTS and current * Override CI tests * Apply code review fixes * Use debug module instead of console.log * Run tests on Node 6 and 8 versions
- Loading branch information
1 parent
933fcab
commit 1f2b9b0
Showing
6 changed files
with
35 additions
and
32 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 |
---|---|---|
|
@@ -2,10 +2,17 @@ machine: | |
node: | ||
version: 4.0.0 | ||
test: | ||
pre: | ||
override: | ||
- npm run eslint | ||
- npm test | ||
- nvm install 6.9.1 && nvm use 6.9.1 && npm test | ||
- nvm install 7.10.0 && nvm use 7.10.0 && npm test | ||
- npm run test-ci | ||
- nvm install 6 && nvm use 6 && npm run test-ci | ||
- nvm install 8 && nvm use 8 && npm run test-ci | ||
post: | ||
- bithound check [email protected]:RafalWilinski/express-status-monitor.git | ||
|
||
deployment: | ||
npm: | ||
branch: master | ||
commands: | ||
- echo -e "$NPM_USERNAME\nNPM_PASSWORD\nNPM_EMAIL" | npm login | ||
- npm run publish |
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
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
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