File tree Expand file tree Collapse file tree 1 file changed +26
-2
lines changed Expand file tree Collapse file tree 1 file changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -170,6 +170,18 @@ jobs:
170
170
echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/dist/plotly.js
171
171
echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/dist/plotly.min.js
172
172
echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/dist/plot-schema.json
173
+ - persist_to_workspace :
174
+ root : ~/
175
+ paths :
176
+ - plotly.js
177
+
178
+ test-dist1 :
179
+ docker :
180
+ - image : circleci/node:12.13.0
181
+ working_directory : ~/plotly.js
182
+ steps :
183
+ - attach_workspace :
184
+ at : ~/
173
185
- run :
174
186
name : Test validation using node.js and jsdom
175
187
command : npm run test-plain-obj
@@ -182,13 +194,19 @@ jobs:
182
194
- run :
183
195
name : Test certain bundles against function constructors
184
196
command : npm run no-new-func
197
+
198
+ test-dist2 :
199
+ docker :
200
+ - image : circleci/node:12.13.0
201
+ working_directory : ~/plotly.js
202
+ steps :
203
+ - attach_workspace :
204
+ at : ~/
185
205
- run :
186
206
name : Test plotly bundles against es6
187
207
command : npm run no-es6-dist
188
208
- run :
189
209
name : Test plotly bundles againt duplicate keys
190
- environment :
191
- NODE_OPTIONS : --max_old_space_size=4096
192
210
command : npm run no-dup-keys
193
211
194
212
workflows :
@@ -220,3 +238,9 @@ workflows:
220
238
- publish-dist :
221
239
requires :
222
240
- install-and-cibuild
241
+ - test-dist1 :
242
+ requires :
243
+ - publish-dist
244
+ - test-dist2 :
245
+ requires :
246
+ - publish-dist
You can’t perform that action at this time.
0 commit comments