mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-04 21:17:55 +08:00
8 lines
148 B
Bash
8 lines
148 B
Bash
set -e
|
|
npm test
|
|
|
|
# report coverage stats for non-PRs
|
|
if [[ -z $CI_PULL_REQUEST ]]; then
|
|
cat ./coverage/lcov.info | ./node_modules/.bin/codecov
|
|
fi
|