Skip to content

Commit

Permalink
added circleci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kflash committed Sep 25, 2017
1 parent fde14b4 commit 2abeec1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2abeec1

Please sign in to comment.