We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43eeab3 commit 4453975Copy full SHA for 4453975
.circleci/config.yml
@@ -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
32
+ jobs:
33
+ - build
0 commit comments