Skip to content

Commit 21ddf69

Browse files
authored
Merge pull request #5917 from plotly/nodejs-v12.22.5
bump node.js containers to v12.22.5
2 parents 88e0524 + ca457a4 commit 21ddf69

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.circleci/config.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ version: 2.0
1010
jobs:
1111
install-and-cibuild:
1212
docker:
13-
- image: circleci/node:12.22.1
13+
- image: circleci/node:12.22.5
1414
working_directory: ~/plotly.js
1515
steps:
1616
- checkout
@@ -34,7 +34,7 @@ jobs:
3434
timezone-jasmine:
3535
docker:
3636
# need '-browsers' version to test in real (xvfb-wrapped) browsers
37-
- image: circleci/node:12.22.1-browsers
37+
- image: circleci/node:12.22.5-browsers
3838
working_directory: ~/plotly.js
3939
steps:
4040
- attach_workspace:
@@ -63,7 +63,7 @@ jobs:
6363
no-gl-jasmine:
6464
docker:
6565
# need '-browsers' version to test in real (xvfb-wrapped) browsers
66-
- image: circleci/node:12.22.1-browsers
66+
- image: circleci/node:12.22.5-browsers
6767
environment:
6868
# Alaska time (arbitrary timezone to test date logic)
6969
TZ: "America/Anchorage"
@@ -79,7 +79,7 @@ jobs:
7979
webgl-jasmine:
8080
docker:
8181
# need '-browsers' version to test in real (xvfb-wrapped) browsers
82-
- image: circleci/node:12.22.1-browsers
82+
- image: circleci/node:12.22.5-browsers
8383
environment:
8484
# Alaska time (arbitrary timezone to test date logic)
8585
TZ: "America/Anchorage"
@@ -95,7 +95,7 @@ jobs:
9595
flaky-no-gl-jasmine:
9696
docker:
9797
# need '-browsers' version to test in real (xvfb-wrapped) browsers
98-
- image: circleci/node:12.22.1-browsers
98+
- image: circleci/node:12.22.5-browsers
9999
environment:
100100
# Alaska time (arbitrary timezone to test date logic)
101101
TZ: "America/Anchorage"
@@ -110,7 +110,7 @@ jobs:
110110
bundle-jasmine:
111111
docker:
112112
# need '-browsers' version to test in real (xvfb-wrapped) browsers
113-
- image: circleci/node:12.22.1-browsers
113+
- image: circleci/node:12.22.5-browsers
114114
environment:
115115
# Alaska time (arbitrary timezone to test date logic)
116116
TZ: "America/Anchorage"
@@ -143,7 +143,7 @@ jobs:
143143

144144
test-baselines:
145145
docker:
146-
- image: circleci/node:12.22.1
146+
- image: circleci/node:12.22.5
147147
working_directory: ~/plotly.js
148148
steps:
149149
- attach_workspace:
@@ -178,7 +178,7 @@ jobs:
178178

179179
test-exports:
180180
docker:
181-
- image: circleci/node:12.22.1
181+
- image: circleci/node:12.22.5
182182
working_directory: ~/plotly.js
183183
steps:
184184
- attach_workspace:
@@ -192,7 +192,7 @@ jobs:
192192

193193
mock-validation:
194194
docker:
195-
- image: circleci/node:12.22.1
195+
- image: circleci/node:12.22.5
196196
working_directory: ~/plotly.js
197197
steps:
198198
- attach_workspace:
@@ -206,7 +206,7 @@ jobs:
206206

207207
source-syntax:
208208
docker:
209-
- image: circleci/node:12.22.1
209+
- image: circleci/node:12.22.5
210210
working_directory: ~/plotly.js
211211
steps:
212212
- attach_workspace:
@@ -217,7 +217,7 @@ jobs:
217217

218218
publish-dist:
219219
docker:
220-
- image: circleci/node:12.22.1
220+
- image: circleci/node:12.22.5
221221
working_directory: ~/plotly.js
222222
steps:
223223
- checkout

test/jasmine/tests/bar_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1664,7 +1664,7 @@ describe('A bar plot', function() {
16641664
}
16651665
});
16661666

1667-
it('should be able to restyle', function(done) {
1667+
it('@noCI should be able to restyle', function(done) {
16681668
var mock = Lib.extendDeep({}, require('@mocks/bar_attrs_relative'));
16691669

16701670
Plotly.newPlot(gd, mock.data, mock.layout).then(function() {

test/jasmine/tests/funnel_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ describe('A funnel plot', function() {
761761
.then(done, done.fail);
762762
});
763763

764-
it('should be able to restyle', function(done) {
764+
it('@noCI should be able to restyle', function(done) {
765765
var mock = {
766766
data: [
767767
{

test/jasmine/tests/waterfall_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ describe('A waterfall plot', function() {
770770
.then(done, done.fail);
771771
});
772772

773-
it('should be able to restyle', function(done) {
773+
it('@noCI should be able to restyle', function(done) {
774774
var mock = {
775775
data: [
776776
{

0 commit comments

Comments
 (0)