blob: 83b21d84009241c905d6a0bff3b661454773bdce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
language: node_js
node_js:
- "0.11"
- "0.10"
before_script:
- npm install
- npm install jshint
script:
- "jshint *.js lib"
after_script:
- npm run-script build
- npm test
|