From c6411e4c7dcf0fcb2a6c959f5214e670df4cd055 Mon Sep 17 00:00:00 2001 From: stasel <2033301+stasel@users.noreply.github.com> Date: Mon, 12 Jan 2026 09:37:43 +0100 Subject: [PATCH] PR quality code checks: Disabled ESLint checks for backend --- .github/workflows/quality-checks.yml | 36 ++++++++++++++-------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/quality-checks.yml b/.github/workflows/quality-checks.yml index f6f645d1..4bd87f48 100644 --- a/.github/workflows/quality-checks.yml +++ b/.github/workflows/quality-checks.yml @@ -6,35 +6,35 @@ on: branches: [main] jobs: - lint-server: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 + # lint-server: + # runs-on: ubuntu-latest + # steps: + # - name: Checkout code + # uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: '22' - cache: 'npm' - cache-dependency-path: '**/package-lock.json' + # - name: Set up Node.js + # uses: actions/setup-node@v4 + # with: + # node-version: '22' + # cache: 'npm' + # cache-dependency-path: '**/package-lock.json' - - name: Install dependencies - run: cd server && npm ci + # - name: Install dependencies + # run: cd server && npm ci - - name: Run ESLint - run: cd server && npm run lint + # - name: Run ESLint + # run: cd server && npm run lint lint-client: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: '22' + node-version: 'lts/*' cache: 'npm' cache-dependency-path: '**/package-lock.json'