.travis.yml 232 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 language: node_js node_js: - 10 - 12 - 14 os: - linux - osx script: - "npm run hint" - "npm run test" - "npm run cover" after_script: "cat ./coverage/lcov.info | coveralls" matrix: allow_failures: - os: osx