Skip to content

Commit 81881f6

Browse files
committed
display test only on master for faster development
1 parent e9deb62 commit 81881f6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.circleci/config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,11 @@ jobs:
404404
name: Test plotly.min.js import using requirejs
405405
command: npm run test-requirejs
406406
- run:
407-
name: Display function constructors in all bundles
408-
command: npm run no-new-func
407+
name: Display function constructors in all bundles (only on master)
408+
command: |
409+
if [ $CIRCLE_BRANCH == "master" ]
410+
then npm run no-new-func
411+
fi
409412
- run:
410413
name: Test plotly bundles against es6
411414
command: npm run no-es6-dist

0 commit comments

Comments
 (0)