From e4d4ed73881de99ddff6047cddee9070fc29ba9d Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 19 Jan 2026 15:38:59 +0000 Subject: [PATCH] Remove lint job from QA workflow The lint CI check was more annoying than helpful. --- .github/workflows/qa.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 5528efd..d29d5bf 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -7,24 +7,6 @@ on: branches: [main, master] jobs: - lint: - name: Lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: npm - - - name: Install dependencies - run: npm ci - - - name: Run ESLint - run: npm run lint - build: name: Build runs-on: ubuntu-latest