Files
wgenerator/.gitea/workflows/angular-build.yml
benjamin 2eaf311a09
Some checks failed
Angular Build / build (push) Failing after 43s
gittea build #3
2026-03-16 22:25:30 +01:00

27 lines
400 B
YAML

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