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