vue/build/ci.sh

14 lines
274 B
Bash
Raw Normal View History

2016-05-14 09:12:56 +08:00
set -e
2016-06-14 06:19:20 +08:00
npm run lint
npm run flow
2016-09-01 00:24:24 +08:00
npm run test:types
2016-06-14 06:19:20 +08:00
npm run test:cover
npm run test:e2e -- --env phantomjs
npm run test:ssr
npm run test:weex
2016-06-14 07:26:01 +08:00
# report coverage stats for non-PRs
if [[ -z $CI_PULL_REQUEST ]]; then
2016-05-14 09:12:56 +08:00
cat ./coverage/lcov.info | ./node_modules/.bin/codecov
2016-06-14 07:26:01 +08:00
fi