From 9885d4b3ebb6ff50882b407e2e65e063165c2fcf Mon Sep 17 00:00:00 2001 From: Shreerang Kale Date: Mon, 29 Dec 2025 14:17:32 +0530 Subject: [PATCH] Revert "Add lint and build github workflow" This reverts commit f36a6bb87cfa1a742796c2339d56d2cde2909aec. --- .github/workflows/lint-and-build.yml | 61 ---------------------------- 1 file changed, 61 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 bdbe9394..00000000 --- a/.github/workflows/lint-and-build.yml +++ /dev/null @@ -1,61 +0,0 @@ -name: Lint and Build - -on: - push: - branches: - - master - - dev - pull_request: - branches: - - master - - dev - -jobs: - lint: - name: Lint - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '20.x' - cache: 'yarn' - cache-dependency-path: yarn.lock - - - name: Install dependencies - run: yarn install --frozen-lockfile - - - name: Run Prettier format check - run: yarn prettier --check . - - build: - name: Build - runs-on: ubuntu-latest - needs: lint - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '20.x' - cache: 'yarn' - cache-dependency-path: yarn.lock - - - name: Install dependencies - run: yarn install --frozen-lockfile - - - name: Build project - run: yarn build - - - name: Upload build artifacts - uses: actions/upload-artifact@v4 - with: - name: build-artifacts - path: dist/ - retention-days: 7 -