diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b49617c..a420d4d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -20,11 +20,15 @@ jobs: container: image: maven:3.9.6-eclipse-temurin-21 steps: - - name: Install git and basic tools + - name: Install git, node, and basic tools run: | apt-get update - apt-get install -y git ca-certificates + apt-get install -y git curl ca-certificates + curl -fsSL https://deb.nodesource.com/setup_22.x | bash - + apt-get install -y nodejs rm -rf /var/lib/apt/lists/* + git --version + node --version - name: Checkout uses: actions/checkout@v4