8000 Add publish test for avoiding function constructors in non-gl(2d|3d) partial bundles by archmoj · Pull Request #5383 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

8000 Add publish test for avoiding function constructors in non-gl(2d|3d) partial bundles #5383

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 7, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
put partial bundle tests in a separate run block
  • Loading branch information
archmoj committed Jan 7, 2021
commit 4c7ad71f1fc04c643639434774c424ebe3b8c811
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
at: ~/
- run:
name: Build dist/
command: npm run build && npm run no-new-func
command: npm run build
- store_artifacts:
path: dist
destination: dist
Expand All @@ -166,6 +166,9 @@ jobs:
echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/dist/plotly.js
echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/dist/plotly.min.js
echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/dist/plot-schema.json
- run:
name: Test bundles
command: npm run no-new-func

workflows:
version: 2
Expand Down
0