UNPKG

215 BPlain TextView Raw
1#!/usr/bin/env bash
2npm run lint &&
3npm run test-cov &&
4npm run lint-cov
5
6# http://docs.drone.io/env.html
7if [[ ! -z "$CI" ]]; then
8 echo "sending lcov data to coveralls.io"
9 cat coverage/lcov.info | coveralls
10fi