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