Skip to content

Commit

Permalink
ci(circle): Use CircleCI 2 (#974)
Browse files Browse the repository at this point in the history
Now we're using CircleCI 2.0, and this also uses yarn on CircleCI for consistency.
  • Loading branch information
tmcw committed Dec 12, 2017
1 parent aa661ff commit e0fa330
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
16 changes: 16 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,16 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:8.9.1
steps:
- checkout
- run:
name: install
command: yarn --frozen-lockfile
- run:
name: test
command: yarn test-ci
- run:
name: coverage
command: ./node_modules/.bin/coveralls < coverage/lcov.info
8 changes: 0 additions & 8 deletions circle.yml

This file was deleted.

0 comments on commit e0fa330

Please sign in to comment.