From 86fd51bfab948aa2d2a4d52d3b2458c4f3858459 Mon Sep 17 00:00:00 2001 From: SpecialX <47072643+wangxiner55@users.noreply.github.com> Date: Mon, 15 Dec 2025 18:35:34 +0800 Subject: [PATCH] ci: run job in node:20 container and install git; add proxy env --- .gitea/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index af17053..241727b 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -11,6 +11,7 @@ on: jobs: build-and-test: runs-on: CDCD + container: node:22-bookworm steps: - name: Checkout @@ -19,7 +20,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '22' cache: 'npm' - name: Install dependencies