Skip to content

Commit 962bde9

Browse files
committed
upgrade circleci to v2.0
1 parent 086327c commit 962bde9

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

.circleci/config.yml

+21
Original file line numberDiff line numberDiff line change
@@ -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+
- run:
20+
name: test
21+
command: npm run test-coveralls

circle.yml

-4
This file was deleted.

0 commit comments

Comments
 (0)