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 ef4ae43 commit 64f6c81Copy full SHA for 64f6c81
.circleci/config.yml
@@ -45,9 +45,20 @@ jobs:
45
path: coverage
46
destination: coverage
47
48
+ build:
49
+ <<: *defaults
50
+ steps:
51
+ - restore_cache:
52
+ key: repository-{{ .Environment.CIRCLE_SHA1 }}
53
54
+ key: dependency-{{ .Branch }}-{{ checksum "yarn.lock" }}
55
+ - run:
56
+ name: Build
57
+ command: yarn build
58
+
59
workflows:
60
version: 2
- checkout-and-dependency-test:
61
+ checkout-and-dependency-test-build:
62
jobs:
63
- checkout:
64
filters:
@@ -65,3 +76,9 @@ workflows:
65
76
66
77
tags:
67
78
only: /.*/
79
+ - build:
80
+ requires:
81
+ - test
82
+ filters:
83
+ tags:
84
+ only: /.*/
0 commit comments