Skip to content

Commit 9220312

Browse files
authored
ci(build): add circleci config for build (#24)
closes #1
1 parent 43eeab3 commit 9220312

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.circleci/config.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
defaults:
2+
docker: &docker
3+
- image: 'circleci/node:8-browsers'
4+
5+
version: 2
6+
jobs:
7+
build:
8+
docker: *docker
9+
working_directory: ~/repo
10+
11+
steps:
12+
- checkout
13+
14+
- restore_cache:
15+
keys:
16+
- v1-dependencies-{{ checksum "yarn.lock" }}
17+
# fallback to using the latest cache if no exact match is found
18+
- v1-dependencies-
19+
20+
- run: yarn install
21+
22+
- save_cache:
23+
paths:
24+
- node_modules
25+
key: v1-dependencies-{{ checksum "yarn.lock" }}
26+
27+
- run: yarn build
28+
29+
workflows:
30+
version: 2
31+
build:
32+
jobs:
33+
- build

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# @angular-redux
2+
[![CircleCI](https://circleci.com/gh/angular-redux/platform/tree/master.svg?style=svg)](https://circleci.com/gh/angular-redux/platform/tree/master)
23

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

0 commit comments

Comments
 (0)