mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
f76c3938d0
* Check SHA before using files from cache * adduser: allow change of the saved password * Make `npm install` respect `config.unicode` * Fix lifecycle to pass `Infinity` for config env value * Don't return 0 exit code on invalid command * cache: Handle 404s and other HTTP errors as errors * bump tap dep, make tests stderr a bit quieter * Resolve ~ in path configs to env.HOME * Include npm version in default user-agent conf * npm init: Use ISC as default license, use save-prefix for deps * Many test and doc fixes
23 lines
646 B
YAML
23 lines
646 B
YAML
box: wercker/nodejs
|
|
# Build definition
|
|
build:
|
|
# The steps that will be executed on build
|
|
steps:
|
|
# A step that executes `npm install` command
|
|
- npm-install
|
|
# A step that executes `npm test` command
|
|
- npm-test
|
|
|
|
# A custom script step, name value is used in the UI
|
|
# and the code value contains the command that get executed
|
|
- script:
|
|
name: echo nodejs information
|
|
code: |
|
|
echo "node version $(node -v) running"
|
|
echo "npm version $(npm -v) running"
|
|
after-steps:
|
|
- sherzberg/slack-notify:
|
|
subdomain: npm-inc
|
|
token: $SLACK_TOKEN
|
|
channel: github-commits
|