From b302b2ee6adb0a35f83ad2dba4c42cce1a1a7d28 Mon Sep 17 00:00:00 2001 From: ahoneybun Date: Wed, 10 Dec 2025 19:03:11 -0700 Subject: [PATCH] Update .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 118ca96..2fd03cc 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,6 +8,13 @@ jobs: test-amd64: runs-on: [ubuntu-24.04, amd64-builder] steps: + - name: Setup + run: | + apt update -y + apt install -y curl gnupg + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - + apt install -y nodejs + - name: Checkout uses: actions/checkout@v5 @@ -20,6 +27,13 @@ jobs: test-arm64: runs-on: [ubuntu-24.04, arm64-builder] steps: + - name: Setup + run: | + apt update -y + apt install -y curl gnupg + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - + apt install -y nodejs + - name: Checkout uses: actions/checkout@v5