From e45a6d6768e7ad9d062e5dbf34213efcf3bb9391 Mon Sep 17 00:00:00 2001 From: RJ Date: Wed, 19 Nov 2025 16:12:36 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20test=20if=20ubuntu=20latest=20wo?= =?UTF-8?q?rks=20with=20the=20correct=20env=20variable=20for=20gitea=20ins?= =?UTF-8?q?tance=20url?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/main.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index 98844e1..6b20d7e 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -36,15 +36,21 @@ jobs: # ============================================ lint: name: 🔍 Code Quality Checks - runs-on: node-latest - env: - ACTIONS_RUNTIME_URL: http://192.168.1.53:3000 # Setează la nivel de job + runs-on: ubuntu-latest + # env: + # ACTIONS_RUNTIME_URL: http://192.168.1.53:3000 # Setează la nivel de job steps: - name: 🔎 Checkout code uses: actions/checkout@v4 + # with: + # github-server-url: ${{ env.ACTIONS_RUNTIME_URL }} + + - name: 📦 Setup Node.js + uses: actions/setup-node@v4 with: - github-server-url: ${{ env.ACTIONS_RUNTIME_URL }} + node-version: "20" + cache: "npm" - name: 📥 Install dependencies run: npm ci