Skip to content

Commit

Permalink
ci(build): add circleci config for build (#24)
Browse files Browse the repository at this point in the history
closes #1
  • Loading branch information
smithad15 authored Jul 11, 2018
1 parent 43eeab3 commit 9220312
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
defaults:
docker: &docker
- image: 'circleci/node:8-browsers'

version: 2
jobs:
build:
docker: *docker
working_directory: ~/repo

steps:
- checkout

- restore_cache:
keys:
- v1-dependencies-{{ checksum "yarn.lock" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: yarn install

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "yarn.lock" }}

- run: yarn build

workflows:
version: 2
build:
jobs:
- build
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# @angular-redux
[![CircleCI](https://circleci.com/gh/angular-redux/platform/tree/master.svg?style=svg)](https://circleci.com/gh/angular-redux/platform/tree/master)

[Redux](https://redux.js.org/) bindings for [Angular](https://angular.io/) applications.

Expand Down

0 comments on commit 9220312

Please sign in to comment.