-
-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathconfig.yml
134 lines (120 loc) · 2.79 KB
/
config.yml
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
version: 2.1
executors:
default-executor:
docker:
- image: cypress/base:10
jobs:
install-dependencies:
executor: default-executor
steps:
- checkout
- restore_cache:
keys:
- v2-deps-{{ checksum "package-lock.json" }}
- v2-deps
- run:
name: 'Install dependencies'
command: npm ci
- save_cache:
paths:
- ~/.npm
- ~/.cache
key: v2-deps-{{ checksum "package-lock.json" }}
- persist_to_workspace:
root: .
paths: .
check-prettier:
executor: default-executor
steps:
- attach_workspace:
at: .
- run:
name: 'Run prettier check on project files'
command: npm run prettier:check
check-linter:
executor: default-executor
steps:
- attach_workspace:
at: .
- run:
name: 'Run linter'
command: npm run lint
run-unit-tests:
executor: default-executor
steps:
- attach_workspace:
at: .
- run:
name: 'Run unit tests'
command: npm run test:unit
run-e2e-tests:
executor: default-executor
steps:
- attach_workspace:
at: .
- restore_cache:
keys:
- v2-deps-{{ checksum "package-lock.json" }}
- v2-deps
- run:
name: 'Run e2e tests'
command: npm run test:e2e:headless
build:
executor: default-executor
steps:
- attach_workspace:
at: .
- run:
name: 'Build'
command: npm run build
- persist_to_workspace:
root: .
paths: .
check-bundles-sizes:
executor: default-executor
steps:
- attach_workspace:
at: .
- run:
name: 'Check bundles sizes'
command: npm run bundlesize
deploy:
executor: default-executor
steps:
- attach_workspace:
at: .
- run:
name: 'Firebase deploy'
command: |
if [[ "$CIRCLE_BRANCH" == "master" ]]; then
npm run firebase:deploy:ci
fi
workflows:
version: 2
build-and-deploy:
jobs:
- install-dependencies
- check-prettier:
requires:
- install-dependencies
- check-linter:
requires:
- install-dependencies
- run-unit-tests:
requires:
- install-dependencies
- run-e2e-tests:
requires:
- install-dependencies
- build:
requires:
- check-prettier
- check-linter
- run-unit-tests
- run-e2e-tests
- check-bundles-sizes:
requires:
- build
- deploy:
requires:
- check-bundles-sizes