File tree 7 files changed +771
-64
lines changed
7 files changed +771
-64
lines changed Original file line number Diff line number Diff line change 1
1
defaults : &defaults
2
2
working_directory : ~/thrift-parser
3
3
docker :
4
- - image : circleci/node:8.9.4
4
+ - image : circleci/node:16
5
5
6
6
version : 2
7
7
jobs :
8
- test_node_8 :
8
+ test :
9
9
<< : *defaults
10
10
steps :
11
11
- checkout
20
20
paths :
21
21
- ./node_modules
22
22
23
- test_node_10 :
24
- << : *defaults
25
- docker :
26
- - image : circleci/node:10.14.0
27
- steps :
28
- - checkout
29
- - run :
30
- name : Install NPM Dependencies
31
- command : npm install
32
- - run :
33
- name : Run Test Suite
34
- command : npm test
35
- - save_cache :
36
- key : dependency-cache-{{ checksum "package.json" }}
37
- paths :
38
- - ./node_modules
39
-
40
23
publish :
41
24
<< : *defaults
42
25
steps :
@@ -75,20 +58,13 @@ workflows:
75
58
version : 2
76
59
build_publish :
77
60
jobs :
78
- - test_node_8 :
61
+ - test :
79
62
filters :
80
63
tags :
81
64
only : /.*/
82
-
83
- - test_node_10 :
84
- filters :
85
- tags :
86
- only : /.*/
87
-
88
65
- publish :
89
66
requires :
90
- - test_node_8
91
- - test_node_10
67
+ - test
92
68
filters :
93
69
tags :
94
70
only : /^(v){1}[0-9]+(\.[0-9]+){2}$/
@@ -97,8 +73,7 @@ workflows:
97
73
98
74
- publish_next :
99
75
requires :
100
- - test_node_8
101
- - test_node_10
76
+ - test
102
77
filters :
103
78
tags :
104
79
only : /^(v){1}[0-9]+(\.[0-9]+){2}(-)[0-9]+$/
You can’t perform that action at this time.
0 commit comments