File tree Expand file tree Collapse file tree 1 file changed +19
-8
lines changed Expand file tree Collapse file tree 1 file changed +19
-8
lines changed Original file line number Diff line number Diff line change @@ -208,15 +208,18 @@ jobs:
208208 - checkout
209209 - npm_install :
210210 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
211219 - test
212220
213221# # WORKFLOWS ##
214222
215- matrix : &matrix
216- matrix :
217- parameters :
218- os : [ debian, linux, macos, "win/default" ]
219-
220223workflows :
221224 postject :
222225 jobs :
@@ -225,8 +228,16 @@ workflows:
225228 parameters :
226229 os : [ linux, macos, "win/default" ]
227230 - build :
228- << : *matrix
231+ matrix :
232+ parameters :
233+ os : [ linux, macos, "win/default" ]
229234 - test :
230- << : *matrix
235+ matrix :
236+ parameters :
237+ os : [ macos, "win/default" ]
231238 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