Files
wgenerator/.gitea/workflows/angular-build.yml
benjamin 80f5e86be5
Some checks failed
Angular Build / build (push) Failing after 6m3s
gittea build #4
2026-03-17 12:07:17 +01:00

29 lines
445 B
YAML

name: Angular Build
on:
push:
branches:
- dev
jobs:
build:
runs-on: runner
container:
image: node:20-bullseye
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