From 2fa3ad781bf8edbe40f9cc6937648db40d5b4eb8 Mon Sep 17 00:00:00 2001 From: Julian Lechner Date: Mon, 7 Jul 2025 15:17:31 +0200 Subject: [PATCH] Create npm-gulp.yml --- .github/workflows/npm-gulp.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/npm-gulp.yml diff --git a/.github/workflows/npm-gulp.yml b/.github/workflows/npm-gulp.yml new file mode 100644 index 0000000..30226c0 --- /dev/null +++ b/.github/workflows/npm-gulp.yml @@ -0,0 +1,25 @@ +name: Build Production + +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Repository auschecken + uses: actions/checkout@v4 + + - name: Node.js v22.16.0 einrichten + uses: actions/setup-node@v4 + with: + node-version: '22.16.0' + + - name: Abhängigkeiten installieren + run: npm install + + - name: Build DEV ausführen + run: npm run buildDevelopment + + - name: Build PROD ausführen + run: npm run buildProduction