From b5f966208b3738ec738e41676808187ade5f16f9 Mon Sep 17 00:00:00 2001 From: RoyceDa Date: Sun, 22 Mar 2026 19:46:11 +0200 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=20CI/CD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index df1b44d..8c02c62 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -15,8 +15,18 @@ jobs: image: maven:3.9.9-eclipse-temurin-21 steps: + - name: Install Node.js (required for JS actions) + run: | + apt-get update + apt-get install -y curl ca-certificates git + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - + apt-get install -y nodejs + node -v + npm -v + git --version + - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v4 - name: Build with Maven run: mvn -B clean package