From 3a08350568461b03d984b710e061a38d500a3a78 Mon Sep 17 00:00:00 2001 From: Antigravity Date: Thu, 28 May 2026 21:16:44 +0000 Subject: [PATCH] fix(ci): bypass setup-node and cache steps in Gitea to use runner system Node --- .gitea/workflows/ci.yaml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 4bf7da3..976a962 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -21,19 +21,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Setup Node 22 - uses: actions/setup-node@v4 - with: - node-version: "22" - - - name: Cache node_modules - uses: actions/cache@v3 - with: - path: memento-note/node_modules - key: ${{ runner.os }}-node-${{ hashFiles('memento-note/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - name: Install dependencies run: npm ci