Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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
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:14.17.5
- image: circleci/node:16.8.0
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:14.17.5-browsers
- image: circleci/node:16.8.0-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:14.17.5-browsers
- image: circleci/node:16.8.0-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:14.17.5-browsers
- image: circleci/node:16.8.0-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:14.17.5-browsers
- image: circleci/node:16.8.0-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:14.17.5-browsers
- image: circleci/node:16.8.0-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:14.17.5
- image: circleci/node:16.8.0
working_directory: ~/plotly.js
steps:
- attach_workspace:
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:

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

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

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

publish-dist:
docker:
- image: circleci/node:14.17.5
- image: circleci/node:16.8.0
working_directory: ~/plotly.js
steps:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion .circleci/env_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export NODE_OPTIONS='--max-old-space-size=4096' && \
echo "node version: $(node --version)" && \
echo "npm version: $(npm --version)" && \
npm ci && \
npm ls || true
npm ls --all || true
2 changes: 1 addition & 1 deletion draftlogs/5919_change.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- Use node.js v14 in tests and publishing [[#5919](https://github.com/plotly/plotly.js/pull/5919)]
- Use `node.js v16` and `npm v7` in development and upgrade version of `package-lock.json` [[#5922](https://github.com/plotly/plotly.js/pull/5922), [#5919](https://github.com/plotly/plotly.js/pull/5919)]
Loading