Skip to content

Commit

Permalink
Merge pull request #5917 from plotly/nodejs-v12.22.5
Browse files Browse the repository at this point in the history
bump node.js containers to v12.22.5
  • Loading branch information
archmoj authored Sep 1, 2021
2 parents 88e0524 + ca457a4 commit 21ddf69
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version: 2.0
jobs:
install-and-cibuild:
docker:
- image: circleci/node:12.22.1
- image: circleci/node:12.22.5
working_directory: ~/plotly.js
steps:
- checkout
Expand All @@ -34,7 +34,7 @@ jobs:
timezone-jasmine:
docker:
# need '-browsers' version to test in real (xvfb-wrapped) browsers
- image: circleci/node:12.22.1-browsers
- image: circleci/node:12.22.5-browsers
working_directory: ~/plotly.js
steps:
- attach_workspace:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
no-gl-jasmine:
docker:
# need '-browsers' version to test in real (xvfb-wrapped) browsers
- image: circleci/node:12.22.1-browsers
- image: circleci/node:12.22.5-browsers
environment:
# Alaska time (arbitrary timezone to test date logic)
TZ: "America/Anchorage"
Expand All @@ -79,7 +79,7 @@ jobs:
webgl-jasmine:
docker:
# need '-browsers' version to test in real (xvfb-wrapped) browsers
- image: circleci/node:12.22.1-browsers
- image: circleci/node:12.22.5-browsers
environment:
# Alaska time (arbitrary timezone to test date logic)
TZ: "America/Anchorage"
Expand All @@ -95,7 +95,7 @@ jobs:
flaky-no-gl-jasmine:
docker:
# need '-browsers' version to test in real (xvfb-wrapped) browsers
- image: circleci/node:12.22.1-browsers
- image: circleci/node:12.22.5-browsers
environment:
# Alaska time (arbitrary timezone to test date logic)
TZ: "America/Anchorage"
Expand All @@ -110,7 +110,7 @@ jobs:
bundle-jasmine:
docker:
# need '-browsers' version to test in real (xvfb-wrapped) browsers
- image: circleci/node:12.22.1-browsers
- image: circleci/node:12.22.5-browsers
environment:
# Alaska time (arbitrary timezone to test date logic)
TZ: "America/Anchorage"
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:

test-baselines:
docker:
- image: circleci/node:12.22.1
- image: circleci/node:12.22.5
working_directory: ~/plotly.js
steps:
- attach_workspace:
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:

test-exports:
docker:
- image: circleci/node:12.22.1
- image: circleci/node:12.22.5
working_directory: ~/plotly.js
steps:
- attach_workspace:
Expand All @@ -192,7 +192,7 @@ jobs:

mock-validation:
docker:
- image: circleci/node:12.22.1
- image: circleci/node:12.22.5
working_directory: ~/plotly.js
steps:
- attach_workspace:
Expand All @@ -206,7 +206,7 @@ jobs:

source-syntax:
docker:
- image: circleci/node:12.22.1
- image: circleci/node:12.22.5
working_directory: ~/plotly.js
steps:
- attach_workspace:
Expand All @@ -217,7 +217,7 @@ jobs:

publish-dist:
docker:
- image: circleci/node:12.22.1
- image: circleci/node:12.22.5
working_directory: ~/plotly.js
steps:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion test/jasmine/tests/bar_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1664,7 +1664,7 @@ describe('A bar plot', function() {
}
});

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

Plotly.newPlot(gd, mock.data, mock.layout).then(function() {
Expand Down
2 changes: 1 addition & 1 deletion test/jasmine/tests/funnel_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ describe('A funnel plot', function() {
.then(done, done.fail);
});

it('should be able to restyle', function(done) {
it('@noCI should be able to restyle', function(done) {
var mock = {
data: [
{
Expand Down
2 changes: 1 addition & 1 deletion test/jasmine/tests/waterfall_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ describe('A waterfall plot', function() {
.then(done, done.fail);
});

it('should be able to restyle', function(done) {
it('@noCI should be able to restyle', function(done) {
var mock = {
data: [
{
Expand Down

0 comments on commit 21ddf69

Please sign in to comment.