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