Skip to content

Commit e0fa330

Browse files
authored
ci(circle): Use CircleCI 2 (#974)
Now we're using CircleCI 2.0, and this also uses yarn on CircleCI for consistency.
1 parent aa661ff commit e0fa330

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
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: yarn --frozen-lockfile
11+
- run:
12+
name: test
13+
command: yarn test-ci
14+
- run:
15+
name: coverage
16+
command: ./node_modules/.bin/coveralls < coverage/lcov.info

circle.yml

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

0 commit comments

Comments
 (0)