From 07ab1efbe50d68b5cfb8d88c47fac5564e49c590 Mon Sep 17 00:00:00 2001 From: ThompsonNye Date: Mon, 16 Jun 2025 18:02:50 +0200 Subject: [PATCH] Add build step for Angular --- .drone.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index 01f32d3..f69441f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,16 +10,21 @@ trigger: - custom steps: - - name: compile + - name: compile (.NET) image: mcr.microsoft.com/dotnet/sdk:9.0-alpine environment: CI_WORKSPACE: "/drone/src" commands: - - dotnet build - volumes: - - name: dockersock - path: /var/run - + - dotnet build ./vegasco-server.slnx + + - name: compile (Angular) + image: node:lts + commands: + - npm install -g pnpm + - cd src/Vegasco-Web + - pnpm install + - pnpm build + - name: test image: quay.io/testcontainers/dind-drone-plugin environment: