-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwercker.yml
34 lines (33 loc) · 1.03 KB
/
wercker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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"
deploy:
steps:
- script:
name: default deploy target
code: echo "default deploy target"
coveralls:
- script:
name: coveralls coverage information
code: |
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
rm -rf coverage
code-climate:
- script:
name: code climate coverage information
code: |
npm install codeclimate-test-reporter
./node_modules/.bin/codeclimate-test-reporter < $WERCKER_ROOT/coverage/lcov.info