Skip to content

Commit 240362b

Browse files
Merge pull request #43 from plotly/develop
Develop
2 parents e0dc5cd + 49123bc commit 240362b

36 files changed

+1199
-3370
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# plotly-react-editor
22

3-
> Standalone React-based editor panel for Plotly charts
3+
> Standalone React-based editor panel for Plotly charts
4+
5+
master ![master](https://circleci.com/gh/plotly/react-plotly.js-editor/tree/master.svg?style=svg&circle-token=df4574e01732846dba81d800d062be5f0fef5641)
6+
7+
develop ![develop](https://circleci.com/gh/plotly/react-plotly.js-editor/tree/develop.svg?style=svg&circle-token=df4574e01732846dba81d800d062be5f0fef5641)
48

59
## Installation
610

circle.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
# specify the version you desire here
6+
- image: circleci/node:8.9
7+
8+
working_directory: ~/react-plotly.js-editor
9+
10+
steps:
11+
- checkout
12+
- restore_cache:
13+
keys:
14+
- v1-dependencies-{{ checksum "package.json" }}
15+
- v1-dependencies-
16+
17+
- run: npm install
18+
19+
- save_cache:
20+
paths:
21+
- node_modules
22+
key: v1-dependencies-{{ checksum "package.json" }}
23+
24+
- run: npm test

0 commit comments

Comments
 (0)