Files
US-Entry-Coach/.gitea/workflows/frontend-build.yml
Simon Lübeß f4737f4dcf
All checks were successful
Build Backend and Frontend / Build & Test .NET Backend (push) Successful in 32s
Build Backend and Frontend / Build Frontend (push) Successful in 12s
Don't create self signed cert in production build pipeline
2025-05-23 16:33:23 +02:00

26 lines
607 B
YAML

name: Build Frontend
run-name: ${{ gitea.actor }} is testing out building the Frontend
on:
workflow_dispatch:
jobs:
frontend:
name: Build Frontend
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: npm install
working-directory: ./usentrycoach.client
- name: Build frontend
run: NODE_ENV=production npm run build
working-directory: ./usentrycoach.client