Фикс CI/CD

This commit is contained in:
RoyceDa
2026-03-22 19:46:11 +02:00
parent 37f6b0bd1d
commit b5f966208b

View File

@@ -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