File tree 1 file changed +37
-10
lines changed
1 file changed +37
-10
lines changed Original file line number Diff line number Diff line change 1
1
version : 2.1
2
2
3
3
commands :
4
- test :
4
+ install :
5
5
steps :
6
- - run :
7
- name : Versions
8
- command : npm version
9
- - checkout
10
- - restore_cache :
11
- keys :
12
- - v1-dependencies-{{ checksum "yarn.lock" }}
13
6
- run :
14
7
name : Install dependencies
15
8
command : yarn install --ignore-engines
9
+ audit :
10
+ steps :
16
11
- run :
17
12
name : Audit dependencies
18
13
command : yarn audit
14
+ build :
15
+ steps :
19
16
- run :
20
17
name : Build packages
21
18
command : yarn build
19
+ lint :
20
+ steps :
22
21
- run :
23
22
name : Lint project
24
23
command : yarn lint
24
+ deps :
25
+ steps :
25
26
- run :
26
27
name : Check dependencies
27
28
command : yarn deps
29
+ test :
30
+ steps :
28
31
- run :
29
32
name : Test
30
33
command : yarn test
31
- - save-npm-cache
32
- save-npm-cache :
34
+ run-node-6 :
35
+ steps :
36
+ - checkout
37
+ - restore_cache :
38
+ keys :
39
+ - v1-dependencies-{{ checksum "yarn.lock" }}
40
+ - install
41
+ - build
42
+ - lint
43
+ - deps
44
+ - test
45
+ - save-cache
46
+ run-node :
47
+ steps :
48
+ - checkout
49
+ - restore_cache :
50
+ keys :
51
+ - v1-dependencies-{{ checksum "yarn.lock" }}
52
+ - install
53
+ - audit
54
+ - build
55
+ - lint
56
+ - deps
57
+ - test
58
+ - save-cache
59
+ save-cache :
33
60
steps :
34
61
- save_cache :
35
62
key : v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "yarn.lock" }}
You can’t perform that action at this time.
0 commit comments