Skip to content

Commit ab29282

Browse files
author
Rob Lukjanovs
committed
Migrate to circleci
1 parent 539ff6b commit ab29282

File tree

2 files changed

+59
-9
lines changed

2 files changed

+59
-9
lines changed

.circleci/config.yml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
version: 2
2+
jobs:
3+
node6:
4+
docker:
5+
- image: circleci/node:6
6+
7+
steps:
8+
- checkout
9+
- restore_cache:
10+
keys:
11+
- npm-deps-{{ checksum "package.json" }}
12+
- run: npm install
13+
- save_cache:
14+
key: npm-deps-{{ checksum "package.json" }}
15+
paths:
16+
- node_modules/
17+
- run: npm test
18+
19+
20+
node8:
21+
docker:
22+
- image: circleci/node:8
23+
24+
steps:
25+
- checkout
26+
- restore_cache:
27+
keys:
28+
- npm-deps-{{ checksum "package.json" }}
29+
- run: npm install
30+
- save_cache:
31+
key: npm-deps-{{ checksum "package.json" }}
32+
paths:
33+
- node_modules/
34+
- run: npm test
35+
36+
node10:
37+
docker:
38+
- image: circleci/node:10
39+
40+
steps:
41+
- checkout
42+
- restore_cache:
43+
keys:
44+
- npm-deps-{{ checksum "package.json" }}
45+
- run: npm install
46+
- save_cache:
47+
key: npm-deps-{{ checksum "package.json" }}
48+
paths:
49+
- node_modules/
50+
- run: npm test
51+
52+
workflows:
53+
version: 2
54+
node6_node8_node10:
55+
jobs:
56+
- node6
57+
- node8
58+
- node10
59+

.travis.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)