This repository was archived by the owner on Jun 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
139 lines (139 loc) · 3.36 KB
/
Copy pathcircle.yml
File metadata and controls
139 lines (139 loc) · 3.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
defaults: &defaults
# resource_class: xlarge
docker:
- image: circleci/node:10.0.0
version: 2
jobs:
build:
<<: *defaults
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install npm
command: npm install
- run:
name: test.ci.before
command: npm run test.ci.before
- run:
name: test.ci.after
command: npm run test.ci.after
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- node_modules
lint:
<<: *defaults
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install npm
command: npm install
- run:
name: Lint
command: npm run lint
bundlesize:
<<: *defaults
steps:
- checkout
- attach_workspace:
at: .
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install npm
command: npm install
- run:
name: Bundlesize
command: npm run start.prod.ci.aot && npm run bundlesize
unit_tests:
<<: *defaults
environment:
TEST_REPORT_FILENAME: "test-results.xml"
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install npm
command: npm install
- run:
name: Generate App Config
command: npm run test.ci.before
- run:
name: Test
command: npm run test.client -- --ci --updateSnapshot --maxWorkers=1 --coverage
- store_artifacts:
path: test-results.xml
prefix: tests
- store_artifacts:
path: coverage
- run:
name: Post coverage results
command: bash <(curl -s https://codecov.io/bash)
e2e_tests:
<<: *defaults
docker:
- image: circleci/node:9.9-browsers
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install npm
command: npm install
- run:
name: Test
command: npm run test.e2e.ci.aot
semver:
<<: *defaults
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install npm
command: npm install
- run:
name: Semantic Release
command: npm run semantic-release || true
workflows:
version: 2
build_test_release:
jobs:
- build
- unit_tests:
requires:
- build
# - e2e_tests:
# requires:
# - build
- lint:
requires:
- build
- bundlesize:
requires:
- build
# - semver:
# requires:
# - build
# - unit_tests
# - e2e_tests
# - lint
# - bundlesize
# filters:
# branches:
# only: master
# - deploy:
# requires:
# - build
# - unit_tests
# - e2e_tests
# - lint
# - bundlesize
# filters:
# branches:
# only: master