mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-02 03:57:36 +08:00
12 lines
253 B
Bash
Executable File
12 lines
253 B
Bash
Executable File
set -e
|
|
if [[ -z $CI_PULL_REQUEST ]] && [[ $CIRCLE_BRANCH = master ]]; then
|
|
npm run lint
|
|
npm run cover
|
|
cat ./coverage/lcov.info | ./node_modules/.bin/codecov
|
|
npm run build
|
|
npm run e2e
|
|
npm run sauce #csp only need Chrome/FF
|
|
else
|
|
npm test
|
|
fi
|