Create Build-Validation.yml
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user