Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Make HiPlot lib es3-compatible #206

Merged
merged 9 commits into from
Jul 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
18 changes: 18 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,16 @@ jobs:
paths:
- built

npm-test-ES3:
docker:
- image: node:lts-buster
steps:
- checkout
- attach_workspace:
at: npm-package
- run: npm install es-check
- run: npx es-check es3 npm-package/hiplot/dist/hiplot.lib.js

npm-test:
docker:
- image: node:lts-buster
Expand Down Expand Up @@ -539,6 +549,12 @@ workflows:
filters:
tags:
only: /.*/
- npm-test-ES3:
requires:
- npm-build
filters:
tags:
only: /.*/
- mypy_pytest:
requires:
- npm-build
Expand Down Expand Up @@ -604,6 +620,7 @@ workflows:
requires:
- pypi-build
- npm-build
- npm-test-ES3
- npm-test
- docs-build
- browser-jupyter-chrome
Expand All @@ -621,6 +638,7 @@ workflows:
requires:
- pypi-build
- npm-build
- npm-test-ES3
- npm-test
- docs-build
- browser-jupyter-chrome
Expand Down
Loading