File tree 2 files changed +18
-5
lines changed
2 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ version: 2
7
7
8
8
defaults : &defaults
9
9
working_directory : ~/fabrix
10
- docker :
11
- - image : circleci/node:10.0.0
12
10
13
11
jobs :
14
12
test :
13
+ docker :
14
+ - image : circleci/node:10.0.0
15
15
<< : *defaults
16
16
steps :
17
17
- checkout
51
51
root : ~/fabrix
52
52
paths : .
53
53
deploy :
54
+ docker :
55
+ - image : circleci/node:12.0.0
54
56
<< : *defaults
55
57
steps :
56
58
- attach_workspace :
62
64
name : Publish package
63
65
command : npm publish
64
66
67
+ test-node12 :
68
+ docker :
69
+ - image : circleci/node:10.0.0
70
+ << : *defaults
71
+ steps :
72
+ - run : echo "Running node v12"
73
+
65
74
workflows :
66
75
version : 2
67
76
test-deploy :
@@ -70,6 +79,10 @@ workflows:
70
79
filters :
71
80
tags :
72
81
only : /^v.*/
82
+ - test-node12 :
83
+ filters :
84
+ tags :
85
+ only : /^v.*/
73
86
- deploy :
74
87
requires :
75
88
- test
Original file line number Diff line number Diff line change @@ -31,9 +31,9 @@ export const Templates = {
31
31
return (
32
32
` Database Info
33
33
Stores : ${ Object . keys ( app . config . get ( 'stores' ) || { } ) }
34
- Web Server Info
35
- Server : ${ app . config . get ( 'web.server' ) || 'NOT INSTALLED' }
36
- Port : ${ app . config . get ( 'web.port' ) || 'N/A' }
34
+ Web Servers Info
35
+ Servers : ${ app . config . get ( 'web.server' ) || 'NOT INSTALLED' }
36
+ Ports : ${ app . config . get ( 'web.port' ) || 'N/A' }
37
37
Routes : ${ ( app . routes || new Map ( ) ) . size } `
38
38
)
39
39
}
You can’t perform that action at this time.
0 commit comments