Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 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
9 changes: 8 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ jobs:
name: Run syntax tests on source files
command: .circleci/test.sh source-syntax

publish-dist:
publish-dist: &publish-dist
docker:
- image: cimg/node:18.20.4
working_directory: ~/plotly.js
Expand Down Expand Up @@ -465,6 +465,11 @@ jobs:
name: Test plot-schema.json diff - If failed, after (npm start) you could run (npm run schema && git add test/plot-schema.json && git commit -m "update plot-schema diff")
command: diff --unified --color dist/plot-schema.json test/plot-schema.json

publish-dist-node-v22:
<<: *publish-dist
docker:
- image: cimg/node:22.14.0

test-stackgl-bundle:
docker:
- image: cimg/node:18.20.4
Expand Down Expand Up @@ -552,4 +557,6 @@ workflows:

- publish-dist

- publish-dist-node-v22

- test-stackgl-bundle
1 change: 1 addition & 0 deletions draftlogs/7381_fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fix installing dependencies in node v22 [[#7381](https://github.com/plotly/plotly.js/pull/7381)]
Loading