[#44] Added some stuff to cicd file

pull/53/head
Jef Roosens 2021-04-29 11:43:53 +02:00
parent 28bb959c12
commit d2ad0591f6
Signed by: Jef Roosens
GPG Key ID: B580B976584B5F30
1 changed files with 10 additions and 1 deletions

View File

@ -1,9 +1,18 @@
pipeline:
test:
build-frontend:
image: node:15-alpine3.13
pull: true
commands:
- cd web && yarn install
- cd web && yarn run build
test-backend:
image: chewingbever/fej-builder:latest
# Always update the builder image
pull: true
commands:
- cargo test
# TODO build dev & rel image, deploy these images
branches: [ master, develop ]