19 lines
433 B
YAML
19 lines
433 B
YAML
pipeline:
|
|
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 ]
|