Skip to content

Commit 05b5ff4

Browse files
committed
ci: bring back testing on alpine
Ref: #31 Signed-off-by: Robert Günzler <[email protected]>
1 parent 1d3d8f1 commit 05b5ff4

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

.circleci/config.yml

+19-8
Original file line numberDiff line numberDiff 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-
220223
workflows:
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 ]

0 commit comments

Comments
 (0)