File tree 1 file changed +20
-4
lines changed
1 file changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -3,22 +3,38 @@ workflows:
3
3
version : 2
4
4
install-test-publish :
5
5
jobs :
6
- - install-dependencies
6
+ - install-dependencies :
7
+ filters :
8
+ tags :
9
+ only : /.*/
7
10
- test :
11
+ filters :
12
+ tags :
13
+ only : /.*/
8
14
requires :
9
15
- install-dependencies
10
16
- lint :
17
+ filters :
18
+ tags :
19
+ only : /.*/
11
20
requires :
12
21
- install-dependencies
13
22
- approve-publish-npm :
14
23
type : approval
15
24
filters :
25
+ tags :
26
+ only : /v[0-9]+(\.[0-9]+)*/
16
27
branches :
17
- only : master
28
+ ignore : /.*/
18
29
requires :
19
30
- test
20
31
- lint
21
32
- publish-npm :
33
+ filters :
34
+ tags :
35
+ only : /v[0-9]+(\.[0-9]+)*/
36
+ branches :
37
+ ignore : /.*/
22
38
requires :
23
39
- approve-publish-npm
24
40
45
61
paths :
46
62
- node_modules
47
63
- persist_to_workspace :
48
- root : ~/builds
49
- paths : .
64
+ root : .
65
+ paths : node_modules
50
66
51
67
test :
52
68
<< : *default
You can’t perform that action at this time.
0 commit comments