Add Node.js setup and build steps to workflows
All checks were successful
Auto Build and Push Docker Image / build (push) Successful in 42s
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:
@@ -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"
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user