From 2e11b7f84136ce8d53e3db2dfa1baffeb344ad25 Mon Sep 17 00:00:00 2001 From: Julian Lechner Date: Mon, 7 Jul 2025 17:47:13 +0200 Subject: [PATCH] Create Build-Validation.yml --- .github/workflows/Build-Validation.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/Build-Validation.yml diff --git a/.github/workflows/Build-Validation.yml b/.github/workflows/Build-Validation.yml new file mode 100644 index 0000000..4986852 --- /dev/null +++ b/.github/workflows/Build-Validation.yml @@ -0,0 +1,23 @@ +name: Build Validation + +on: + pull_request: + types: [opened, synchronize, reopened] + +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 ausführen + run: npm run rolloutBuild