🧪 test if ubuntu latest works with the correct env variable for gitea instance url
Some checks failed
Build and Deploy Next.js Blog to Production / 🔍 Code Quality Checks (push) Failing after 5m36s
Build and Deploy Next.js Blog to Production / 🏗️ Build and Push Docker Image (push) Has been skipped
Build and Deploy Next.js Blog to Production / 🚀 Deploy to Production (push) Has been skipped

This commit is contained in:
RJ
2025-11-19 16:12:36 +02:00
parent db9d0aa697
commit e45a6d6768

View File

@@ -36,15 +36,21 @@ jobs:
# ============================================ # ============================================
lint: lint:
name: 🔍 Code Quality Checks name: 🔍 Code Quality Checks
runs-on: node-latest runs-on: ubuntu-latest
env: # env:
ACTIONS_RUNTIME_URL: http://192.168.1.53:3000 # Setează la nivel de job # ACTIONS_RUNTIME_URL: http://192.168.1.53:3000 # Setează la nivel de job
steps: steps:
- name: 🔎 Checkout code - name: 🔎 Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
# with:
# github-server-url: ${{ env.ACTIONS_RUNTIME_URL }}
- name: 📦 Setup Node.js
uses: actions/setup-node@v4
with: with:
github-server-url: ${{ env.ACTIONS_RUNTIME_URL }} node-version: "20"
cache: "npm"
- name: 📥 Install dependencies - name: 📥 Install dependencies
run: npm ci run: npm ci