Skip to content

Commit 46b1135

Browse files
committed
build: add circle 2 config
1 parent 411b6cb commit 46b1135

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
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:4.8.2
6+
steps:
7+
- checkout
8+
- run:
9+
name: update-npm
10+
command: 'sudo npm install -g npm@latest'
11+
- run:
12+
name: install-npm
13+
command: npm install
14+
- run:
15+
name: test
16+
command: npm test

0 commit comments

Comments
 (0)