From 826fcfc379ba8ffd55378410bc89eb38598ea415 Mon Sep 17 00:00:00 2001 From: Bensch Date: Tue, 24 Feb 2026 14:34:15 +0000 Subject: [PATCH] test --- .gitea/workflows/test.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 14582d3..e188395 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -10,13 +10,15 @@ jobs: runs-on: ["buildkit"] # must match runner labels steps: - # Checkout repository (requires Node) - - name: Install Node.js + # Install basic dependencies for Node.js + - name: Install Node.js dependencies run: | - # Debian/Ubuntu based image + apt-get update + apt-get install -y curl gnupg ca-certificates curl -fsSL https://deb.nodesource.com/setup_20.x | bash - apt-get install -y nodejs + # Checkout the repository - name: Checkout repository uses: actions/checkout@v4 @@ -29,7 +31,7 @@ jobs: | tar -xz -C /usr/local/bin --strip-components=1 bin/buildctl fi - # Build and push image using remote BuildKit + # Build and push Dockerfile using remote BuildKit - name: Build and Push Dockerfile run: | buildctl \