Revert "Add lint and build github workflow"
All checks were successful
/ Run lint and build checks (pull_request) Successful in 3m37s

This reverts commit c4aa6a8494.
This commit is contained in:
Prathamesh Musale 2025-12-26 10:26:52 +05:30
parent a612d43f97
commit 40118f53f6

View File

@ -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