We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 086327c commit 962bde9Copy full SHA for 962bde9
.circleci/config.yml
@@ -0,0 +1,21 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ working_directory: ~/react-lazy-tree
5
+ branches:
6
+ ignore:
7
+ - gh-pages
8
+ docker:
9
+ - image: circleci/node:10.9.0
10
+ steps:
11
+ - checkout
12
+ - run:
13
+ name: install-npm
14
+ command: npm install
15
+ - save_cache:
16
+ key: dependency-cache-{{ checksum "package.json" }}
17
+ paths:
18
+ - ./node_modules
19
20
+ name: test
21
+ command: npm run test-coveralls
circle.yml
0 commit comments