Separate build steps

v1-devel
garrettmills 4 years ago
parent 1882160b5c
commit 8ff3634239
No known key found for this signature in database
GPG Key ID: 6ACD58D6ADACFC6E

@ -1,9 +1,13 @@
kind: pipeline
name: default
steps:
- name: tests
image: node:12
commands:
- yarn install
- yarn run test_units
- yarn run test_integration
- name: unit tests
image: node:12
commands:
- yarn install
- yarn run test_units
- name: integration tests
image: node:12
commands:
- yarn install
- yarn run test_integration

Loading…
Cancel
Save