From 2534dff66191c9497e3795e3d20a948fc563cf24 Mon Sep 17 00:00:00 2001 From: Prashantkumar Khatri <96608160+ShantKhatri@users.noreply.github.com> Date: Mon, 1 Jun 2026 18:42:55 +0530 Subject: [PATCH] =?UTF-8?q?Revert=20"feat:=20add=20CI=20pipeline=20with=20?= =?UTF-8?q?lint,=20typecheck,=20test,=20and=20PR=20title=20enforc=E2=80=A6?= =?UTF-8?q?"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit c535f206a98c69a1159baf1d973a2037ebabd0f6. --- .github/workflows/ci.yml | 49 ---------------------------------- .github/workflows/pr-title.yml | 14 ---------- 2 files changed, 63 deletions(-) delete mode 100644 .github/workflows/ci.yml delete mode 100644 .github/workflows/pr-title.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 4f1ba706..00000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: CI - -on: - push: - branches: [main] - pull_request: - branches: ["**"] - -jobs: - ci: - name: Typecheck / Lint / Test (Node ${{ matrix.node-version }}) - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18, 20] - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup pnpm - uses: pnpm/action-setup@v3 - with: - version: 8 - - - name: Setup Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - cache: "pnpm" - - - name: Install dependencies - run: pnpm install --frozen-lockfile - - - name: Typecheck - run: pnpm -r run typecheck - - - name: Lint - run: pnpm -r run lint - - - name: Test - run: pnpm -r run test --coverage - - - name: Upload coverage - uses: actions/upload-artifact@v4 - with: - name: coverage-node-${{ matrix.node-version }} - path: "**/coverage" - if-no-files-found: ignore diff --git a/.github/workflows/pr-title.yml b/.github/workflows/pr-title.yml deleted file mode 100644 index 9833ba42..00000000 --- a/.github/workflows/pr-title.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: PR Title Check - -on: - pull_request: - types: [opened, edited, synchronize, reopened] - -jobs: - pr-title: - name: Enforce Conventional Commits - runs-on: ubuntu-latest - steps: - - uses: amannn/action-semantic-pull-request@v5 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}