Compare commits

..

2 Commits

Author SHA1 Message Date
be4b752e00 Merge pull request 'chore/adjust-readme' (#1) from chore/adjust-readme into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #1
2026-03-06 16:01:23 +00:00
Dennis Hundertmark
91c29affd1 update .drone.yml to add pull request check and separate deployment pipeline
All checks were successful
continuous-integration/drone/pr Build is passing
2026-03-06 16:55:20 +01:00

View File

@@ -1,6 +1,26 @@
kind: pipeline
type: kubernetes
name: default
name: pr-check
trigger:
event:
- pull_request
steps:
- name: build-angular
image: node:22-alpine
commands:
- npm ci
- npm run build
---
kind: pipeline
type: kubernetes
name: deploy
trigger:
branch:
- main
event:
- push
steps:
- name: build-angular