Skip to content
This repository was archived by the owner on Feb 21, 2021. It is now read-only.

Commit dc3ba67

Browse files
committed
update ci config
- update travis ci to node 8 - update to circieci 2.0
1 parent a0c9e61 commit dc3ba67

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

.circleci/config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:8.9.1
6+
steps:
7+
- checkout
8+
- run:
9+
name: install
10+
command: npm i
11+
- run:
12+
name: lint
13+
command: npm run lint
14+
- run:
15+
name: test
16+
command: npm test -- --coverage

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
language: node_js
22
node_js:
3-
- "7"
3+
- "8"

circle.yml

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

0 commit comments

Comments
 (0)