Files
wgenerator/.gitea/workflows/angular-build.yml
benjamin e55036d0f7
Some checks failed
Angular Build / build (push) Failing after 5m51s
gittea build #5
2026-03-17 12:29:55 +01:00

29 lines
448 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 -f
- name: Build Angular
run: npm run build