1sudo: false 2 3language: node_js 4 5node_js: 6 - "6" 7 - "7" 8 - "8" 9 - "9" 10 11install: 12 - PATH="`npm bin`:`npm bin -g`:$PATH" 13 # Install dependencies and build 14 - npm install 15 16script: 17 # Output useful info for debugging 18 - node --version 19 - npm --version 20 # Run tests 21 - npm test 22