From 4b4641e1b79337ab50cdf9173cac32ebb6292584 Mon Sep 17 00:00:00 2001 From: benjamin Date: Mon, 16 Mar 2026 22:16:06 +0100 Subject: [PATCH] gittea build --- .gittea/workflows/angular-build.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .gittea/workflows/angular-build.yml diff --git a/.gittea/workflows/angular-build.yml b/.gittea/workflows/angular-build.yml new file mode 100644 index 0000000..2363710 --- /dev/null +++ b/.gittea/workflows/angular-build.yml @@ -0,0 +1,26 @@ +name: Angular Build + +on: + push: + branches: + - dev + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Build Angular + run: npm run build