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 e9deb62 commit 81881f6Copy full SHA for 81881f6
.circleci/config.yml
@@ -404,8 +404,11 @@ jobs:
404
name: Test plotly.min.js import using requirejs
405
command: npm run test-requirejs
406
- run:
407
- name: Display function constructors in all bundles
408
- command: npm run no-new-func
+ name: Display function constructors in all bundles (only on master)
+ command: |
409
+ if [ $CIRCLE_BRANCH == "master" ]
410
+ then npm run no-new-func
411
+ fi
412
413
name: Test plotly bundles against es6
414
command: npm run no-es6-dist
0 commit comments