master
Pooya Parsa 2017-08-13 16:08:50 +04:30
parent 15f21a1a33
commit 9c35dffc09
1 changed files with 36 additions and 0 deletions

36
.circleci/config.yml Executable file
View File

@ -0,0 +1,36 @@
version: 2
jobs:
build:
working_directory: /usr/src/app
docker:
- image: banian/node
steps:
# Checkout repository
- checkout
# Restore cache
- restore_cache:
key: yarn-{{ checksum "yarn.lock" }}
# Install dependencies
- run:
name: Install Dependencies
command: NODE_ENV=dev yarn
# Keep cache
- save_cache:
key: yarn-{{ checksum "yarn.lock" }}
paths:
- "node_modules"
# Build
# - run:
# name: Build
# command: |
# mkdir -p dist
# yarn build
# Test
- run:
name: Tests
command: yarn test && yarn codecov