Skip to content

Commit

Permalink
Migrate to CircleCI 2.0
Browse files Browse the repository at this point in the history
Closes gh-1852
  • Loading branch information
serima authored and ariya committed Sep 15, 2017
1 parent 1e6ca4b commit bf3ae45
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 16 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,20 @@
version: 2
jobs:
build:
working_directory: ~/working_directory
docker:
- image: node:6
environment:
NO_WATCH_TESTS: 1
steps:
- checkout
- run: node --version
- run: npm --version
- restore_cache:
key: v1-npm-dependencies-{{ .Branch }}-{{ checksum "package.json" }}
- run: npm install
- save_cache:
key: v1-npm-dependencies-{{ .Branch }}-{{ checksum "package.json" }}
paths:
- ./node_modules
- run: npm run circleci
16 changes: 0 additions & 16 deletions circle.yml

This file was deleted.

0 comments on commit bf3ae45

Please sign in to comment.