From b9690137cad890def84400961d00cfb078ba2929 Mon Sep 17 00:00:00 2001 From: Julian Lechner Date: Mon, 7 Jul 2025 18:12:12 +0200 Subject: [PATCH] Update Build Validation.yml --- .github/workflows/Build Validation.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Build Validation.yml b/.github/workflows/Build Validation.yml index 5dcb43a..144c467 100644 --- a/.github/workflows/Build Validation.yml +++ b/.github/workflows/Build Validation.yml @@ -8,19 +8,19 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Repository auschecken + - name: checkout Repository uses: actions/checkout@v4 - - name: Node.js v22.16.0 einrichten + - name: use NodeJS v22.16.0 uses: actions/setup-node@v4 with: node-version: '22.16.0' - - name: Abhängigkeiten installieren + - name: Install Dependencies run: npm install - - name: Build DEV ausführen + - name: run Build DEV run: npm run buildDevelopment - - name: Build PROD ausführen + - name: run Build PROD run: npm run buildProduction