We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aa0087 commit 746b3e5Copy full SHA for 746b3e5
build/ci.sh
@@ -1,6 +1,5 @@
1
set -e
2
-if [ -z "$CI_PULL_REQUEST" ]
3
-then
+if [ -z "$CI_PULL_REQUEST" ] || [ "$CIRCLE_BRANCH" == "master" ]; then
4
npm run lint
5
npm run cover
6
cat ./coverage/lcov.info | ./node_modules/.bin/codecov
circle.yml
@@ -2,10 +2,6 @@ machine:
node:
version: 5
-general:
- branches:
7
- only: master
8
-
9
test:
10
override:
11
- bash ./build/ci.sh
0 commit comments