File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
# @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 )
2
3
3
4
[ Redux] ( https://redux.js.org/ ) bindings for [ Angular] ( https://angular.io/ ) applications.
4
5
You can’t perform that action at this time.
0 commit comments