You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
339 B
18 lines
339 B
10 years ago
|
language: node_js
|
||
|
node_js:
|
||
10 years ago
|
- "0.12"
|
||
10 years ago
|
- "0.11"
|
||
|
before_script:
|
||
|
- npm install
|
||
|
- npm install jshint
|
||
10 years ago
|
- export DISPLAY=:99.0
|
||
|
- sh -e /etc/init.d/xvfb start
|
||
10 years ago
|
script:
|
||
|
- "jshint *.js lib"
|
||
|
after_script:
|
||
10 years ago
|
- npm run-script build
|
||
10 years ago
|
- npm run-script karma
|
||
10 years ago
|
- npm run-script test-coveralls
|
||
10 years ago
|
- cd test/node && npm install && node app.js
|
||
10 years ago
|
|