Go to file
2016-06-01 06:30:32 +02:00
dist compile 2016-06-01 06:04:20 +02:00
ts run triggers 2016-06-01 06:30:21 +02:00
.gitignore prepare extended functionality 2016-05-29 22:54:59 +02:00
.gitlab-ci.yml update gitlab-ci.yml 2016-06-01 05:58:43 +02:00
.npmignore initial 2016-05-26 22:17:57 +02:00
alias.json add functionality 2016-05-30 02:28:47 +02:00
appveyor.yml add appveyor 2016-05-30 02:38:31 +02:00
LICENSE initial 2016-05-26 22:17:57 +02:00
package.json 2.0.9 2016-06-01 06:30:32 +02:00
README.md fix README 2016-05-30 11:08:21 +02:00

NPMCI

npmci is your friend when it comes to handling npm packages during CI builds.

Status

build status Build status

Usage

npmci is designed to work in docker CI environments. The following docker images come with npmci presinstalled:

Docker Hub:

npmci can be called from commandline:

# Install any node version:
npmci install lts # will install latest LTS node version and update PATH for node and npm versions
npmci install stable # will install latest stable node version and update PAth for node and npm
npmci install x.x.x #  will install any specific node version.

# Install any node version, install dependencies and run test in cwd:
npmci test lts # will install latest lts node version and run "npm install" and "npm test".

# publish npm module
npmci publish # will look vor $NPMCITOKEN env var and push any module in cwd to npm