File tree 1 file changed +19
-8
lines changed
1 file changed +19
-8
lines changed Original file line number Diff line number Diff line change @@ -208,15 +208,18 @@ jobs:
208
208
- checkout
209
209
- npm_install :
210
210
os : << parameters.os >>
211
+ - when :
212
+ condition :
213
+ equal : [ "alpine", << parameters.os >> ]
214
+ steps :
215
+ - prepare :
216
+ os : << parameters.os >>
217
+ - run :
218
+ command : npm run build:test
211
219
- test
212
220
213
221
# # WORKFLOWS ##
214
222
215
- matrix : &matrix
216
- matrix :
217
- parameters :
218
- os : [ debian, linux, macos, "win/default" ]
219
-
220
223
workflows :
221
224
postject :
222
225
jobs :
@@ -225,8 +228,16 @@ workflows:
225
228
parameters :
226
229
os : [ linux, macos, "win/default" ]
227
230
- build :
228
- << : *matrix
231
+ matrix :
232
+ parameters :
233
+ os : [ linux, macos, "win/default" ]
229
234
- test :
230
- << : *matrix
235
+ matrix :
236
+ parameters :
237
+ os : [ macos, "win/default" ]
231
238
requires : [ build-<< matrix.os >> ]
232
-
239
+ - test :
240
+ matrix :
241
+ parameters :
242
+ os : [ alpine, debian ]
243
+ requires : [ build-linux ]
You can’t perform that action at this time.
0 commit comments