From 40118f53f6c2dc5c3f83fff121c3c76f4c09923e Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Fri, 26 Dec 2025 10:26:52 +0530 Subject: [PATCH] Revert "Add lint and build github workflow" This reverts commit c4aa6a8494d121e5894b3f40e55fbfb2353a16c3. --- .github/workflows/lint-and-build.yml | 35 ---------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/lint-and-build.yml diff --git a/.github/workflows/lint-and-build.yml b/.github/workflows/lint-and-build.yml deleted file mode 100644 index c209440..0000000 --- a/.github/workflows/lint-and-build.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Lint and Build - -on: - pull_request: - branches: [ main ] - push: - branches: [ main ] - -jobs: - lint-and-build: - name: Run lint and build checks - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: "20" - cache: "yarn" - cache-dependency-path: yarn.lock - - - name: Enable corepack (Yarn) - run: corepack enable - - - name: Install dependencies - run: yarn install --frozen-lockfile - - - name: Run ESLint - run: yarn lint - - - name: Run build - run: yarn build