opusdev/vector-similarity-api
1
1language: node_js2node_js:3 - node4 - lts/*5script:6 - npm run lint7 # test-coverage will also run the tests, but does not print helpful output upon test failure.8 # So we also run the tests separately.9 - npm run test10 - npm run test-coverage && cat coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf coverage11 