@@ -3,7 +3,7 @@ workflows:
3
3
node-multi-build :
4
4
jobs :
5
5
- gally-create-pr
6
- - test-node-v15 :
6
+ - test-node-v16 :
7
7
requires :
8
8
- gally-create-pr
9
9
- test-node-v14 :
@@ -15,7 +15,7 @@ workflows:
15
15
- gally-auto-approve :
16
16
requires :
17
17
- gally-create-pr
18
- - test-node-v15
18
+ - test-node-v16
19
19
- test-node-v14
20
20
- test-node-v12
21
21
filters :
@@ -24,7 +24,7 @@ workflows:
24
24
- release :
25
25
requires :
26
26
- gally-create-pr
27
- - test-node-v15
27
+ - test-node-v16
28
28
- test-node-v14
29
29
- test-node-v12
30
30
filters :
@@ -34,14 +34,14 @@ version: 2
34
34
jobs :
35
35
gally-create-pr :
36
36
docker :
37
- - image : ' circleci/node:14'
37
+ - image : circleci/node:14
38
38
steps :
39
39
- checkout
40
40
- run : sudo yarn global add gally
41
41
- run : ga promote $CIRCLE_BRANCH
42
42
test-node-v14 :
43
43
docker :
44
- - image : ' circleci/node:14'
44
+ - image : circleci/node:14
45
45
steps :
46
46
- checkout
47
47
- run :
@@ -58,13 +58,13 @@ jobs:
58
58
- restore_cache :
59
59
name : Restore Yarn Package Cache
60
60
keys :
61
- - ' yarn-packages-{{ checksum "yarn.lock" }}'
61
+ - yarn-packages-{{ checksum "yarn.lock" }}
62
62
- run :
63
63
name : Install Dependencies
64
64
command : yarn install --frozen-lockfile
65
65
- save_cache :
66
66
name : Save Yarn Package Cache
67
- key : ' yarn-packages-{{ checksum "yarn.lock" }}'
67
+ key : yarn-packages-{{ checksum "yarn.lock" }}
68
68
paths :
69
69
- ~/.cache/yarn
70
70
- run : yarn test
78
78
fi
79
79
test-node-v12 :
80
80
docker :
81
- - image : ' circleci/node:12'
81
+ - image : circleci/node:12
82
82
steps :
83
83
- checkout
84
84
- run :
@@ -95,13 +95,13 @@ jobs:
95
95
- restore_cache :
96
96
name : Restore Yarn Package Cache
97
97
keys :
98
- - ' yarn-packages-{{ checksum "yarn.lock" }}'
98
+ - yarn-packages-{{ checksum "yarn.lock" }}
99
99
- run :
100
100
name : Install Dependencies
101
101
command : yarn install --frozen-lockfile
102
102
- save_cache :
103
103
name : Save Yarn Package Cache
104
- key : ' yarn-packages-{{ checksum "yarn.lock" }}'
104
+ key : yarn-packages-{{ checksum "yarn.lock" }}
105
105
paths :
106
106
- ~/.cache/yarn
107
107
- run : yarn test
@@ -110,7 +110,7 @@ jobs:
110
110
1);
111
111
gally-auto-approve :
112
112
docker :
113
- - image : ' circleci/node:14'
113
+ - image : circleci/node:14
114
114
steps :
115
115
- run :
116
116
name : Set PR number
@@ -129,7 +129,7 @@ jobs:
129
129
"base.ref=dev&state=open&user.login=dependabot-preview[bot]"
130
130
release :
131
131
docker :
132
- - image : ' circleci/node:14'
132
+ - image : circleci/node:14
133
133
steps :
134
134
- checkout
135
135
- run :
@@ -146,19 +146,19 @@ jobs:
146
146
- restore_cache :
147
147
name : Restore Yarn Package Cache
148
148
keys :
149
- - ' yarn-packages-{{ checksum "yarn.lock" }}'
149
+ - yarn-packages-{{ checksum "yarn.lock" }}
150
150
- run :
151
151
name : Install Dependencies
152
152
command : yarn install --frozen-lockfile
153
153
- save_cache :
154
154
name : Save Yarn Package Cache
155
- key : ' yarn-packages-{{ checksum "yarn.lock" }}'
155
+ key : yarn-packages-{{ checksum "yarn.lock" }}
156
156
paths :
157
157
- ~/.cache/yarn
158
158
- run : yarn run semantic-release
159
- test-node-v15 :
159
+ test-node-v16 :
160
160
docker :
161
- - image : ' circleci/node:15 '
161
+ - image : circleci/node:16
162
162
steps :
163
163
- checkout
164
164
- run :
@@ -175,13 +175,13 @@ jobs:
175
175
- restore_cache :
176
176
name : Restore Yarn Package Cache
177
177
keys :
178
- - ' yarn-packages-{{ checksum "yarn.lock" }}'
178
+ - yarn-packages-{{ checksum "yarn.lock" }}
179
179
- run :
180
180
name : Install Dependencies
181
181
command : yarn install --frozen-lockfile
182
182
- save_cache :
183
183
name : Save Yarn Package Cache
184
- key : ' yarn-packages-{{ checksum "yarn.lock" }}'
184
+ key : yarn-packages-{{ checksum "yarn.lock" }}
185
185
paths :
186
186
- ~/.cache/yarn
187
187
- run : yarn test
0 commit comments