File tree Expand file tree Collapse file tree 4 files changed +420
-890
lines changed Expand file tree Collapse file tree 4 files changed +420
-890
lines changed Original file line number Diff line number Diff line change 3
3
build :
4
4
docker :
5
5
- image : circleci/node:8
6
- working_directory : ~/repo
7
6
steps :
8
7
- checkout
9
8
- run : npm install
10
9
- run : npm run lint
11
10
- persist_to_workspace :
12
- root : ~/repo
13
- paths : .
11
+ root : ~/
12
+ paths :
13
+ - project
14
14
test-node8 :
15
15
docker :
16
16
- image : circleci/node:8
17
- working_directory : ~/repo
18
17
steps :
19
18
- attach_workspace :
20
- at : ~/repo
19
+ at : ~/
21
20
- run : npm test
22
21
test-node9 :
23
22
docker :
24
23
- image : circleci/node:9
25
- working_directory : ~/repo
26
24
steps :
27
25
- attach_workspace :
28
- at : ~/repo
26
+ at : ~/
29
27
- run : npm test
30
28
test-node10 :
31
29
docker :
32
30
- image : circleci/node:10
33
- working_directory : ~/repo
34
31
steps :
35
32
- attach_workspace :
36
- at : ~/repo
33
+ at : ~/
37
34
- run : npm test
38
35
test-node11 :
39
36
docker :
40
37
- image : circleci/node:11
41
- working_directory : ~/repo
42
38
steps :
43
39
- attach_workspace :
44
- at : ~/repo
40
+ at : ~/
45
41
- run : npm test
46
42
test-node12 :
47
43
docker :
48
44
- image : circleci/node:12
49
- working_directory : ~/repo
50
45
steps :
51
46
- attach_workspace :
52
- at : ~/repo
47
+ at : ~/
48
+ - run : npm test
49
+ test-node13 :
50
+ docker :
51
+ - image : circleci/node:13
52
+ steps :
53
+ - attach_workspace :
54
+ at : ~/
53
55
- run : npm test
54
56
publish-beta :
55
57
docker :
56
58
- image : circleci/node:10
57
- working_directory : ~/repo
58
59
steps :
59
60
- attach_workspace :
60
- at : ~/repo
61
+ at : ~/
61
62
- run :
62
63
name : Authenticate with registry
63
64
command : echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" >> ~/.npmrc
67
68
publish-stable :
68
69
docker :
69
70
- image : circleci/node:10
70
- working_directory : ~/repo
71
71
steps :
72
72
- attach_workspace :
73
- at : ~/repo
73
+ at : ~/
74
74
- run :
75
75
name : Authenticate with registry
76
76
command : echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" >> ~/.npmrc
@@ -116,13 +116,20 @@ workflows:
116
116
filters :
117
117
tags :
118
118
only : /.*/
119
+ - test-node13 :
120
+ requires :
121
+ - build
122
+ filters :
123
+ tags :
124
+ only : /.*/
119
125
- publish-beta :
120
126
requires :
121
127
- test-node8
122
128
- test-node9
123
129
- test-node10
124
130
- test-node11
125
131
- test-node12
132
+ - test-node13
126
133
filters :
127
134
tags :
128
135
only : /^v\d*\.\d*\.\d*-beta\.\d*$/
@@ -136,6 +143,7 @@ workflows:
136
143
- test-node10
137
144
- test-node11
138
145
- test-node12
146
+ - test-node13
139
147
filters :
140
148
tags :
141
149
only : /^v\d*\.\d*\.\d*$/
You can’t perform that action at this time.
0 commit comments