base CI
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Debucquoy 2024-02-09 16:46:54 +01:00
parent ef4929640d
commit 76a856dfd6
Signed by: tonitch
GPG Key ID: A78D6421F083D42E

59
.drone.yml Normal file
View File

@ -0,0 +1,59 @@
---
kind: pipeline
type: docker
name: test
steps:
- name: Backend-Tests
image: eclipse-temurin:21
workspace: backend/
commands:
- echo "Backend CI Test TODO"
- name: FrontEnd-Tests
image: node:lts-alpine
workspace: frontend/
commands:
- echo "Frontend CI Test TODO"
---
kind: pipeline
type: docker
name: build
steps:
- name: Backend-build
image: eclipse-temurin:21
workspace: backend/
commands:
- echo "Backend CI build TODO"
- name: FrontEnd-build
image: node:lts-alpine
workspace: frontend/
commands:
- echo "Frontend CI build TODO"
---
kind: pipeline
type: exec
name: deploy
plateform:
os: linux
arch: amd64
trigger:
branch:
- master
event:
- push
clone:
disabled: true
steps:
- name: deploy frontend
commands:
- echo "deploying frontend TODO"
- name: deploy backend
commands:
- echo "deploying backend TODO"