Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorC J Silverio <ceejceej@gmail.com>2014-04-23 05:33:33 +0400
committerC J Silverio <ceejceej@gmail.com>2014-04-23 05:33:33 +0400
commitcb56e208765337721c49c21a22e7c81ee04d1e06 (patch)
treec2bdd37e6923c648098b81e42cf96cb7d430e608 /wercker.yml
parent7f35b195d6f820d92edce0900527430d0f674fa4 (diff)
wercker.yml for the testing
Diffstat (limited to 'wercker.yml')
-rw-r--r--wercker.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/wercker.yml b/wercker.yml
new file mode 100644
index 000000000..f944a9552
--- /dev/null
+++ b/wercker.yml
@@ -0,0 +1,22 @@
+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