Add Node.js setup and build steps to workflows
All checks were successful
Auto Build and Push Docker Image / build (push) Successful in 42s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-23 20:20:38 +01:00
parent 8535dc14ca
commit 42b2971cd8
2 changed files with 29 additions and 7 deletions

View File

@@ -13,6 +13,17 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Build TypeScript
run: npm run build
- name: Build and Push to local registry - name: Build and Push to local registry
run: | run: |
REGISTRY="192.168.88.201:5000" REGISTRY="192.168.88.201:5000"

View File

@@ -15,6 +15,17 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Build TypeScript
run: npm run build
- name: Build and Push to local registry - name: Build and Push to local registry
run: | run: |
REGISTRY="192.168.88.201:5000" REGISTRY="192.168.88.201:5000"