Skip to content
This repository was archived by the owner on Apr 17, 2026. It is now read-only.

Commit 78f3232

Browse files
committed
fix: remove redundant workflows and fix GitHub Actions failures
Workflow optimizations: - Remove CodeQL from workflow (using GitHub's default setup instead) - Remove Vercel deployment steps (handled by Vercel GitHub integration) - Rename "Build & Deploy" to "Build Test" for clarity - Fix invalid Vercel action SHA that caused workflow failure This simplifies our CI/CD pipeline by: 1. Eliminating duplicate security scanning (CodeQL) 2. Removing redundant deployment steps (Vercel auto-deploys) 3. Focusing workflows on testing and validation only 4. Letting integrations handle their specialized tasks
1 parent 8503c39 commit 78f3232

1 file changed

Lines changed: 2 additions & 19 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ jobs:
8383
uses: actions/dependency-review-action@4081bf99e2866ebe428fc0477b69eb4fcda7220a # v4.4.0
8484

8585
# ===============================
86-
# 🏗️ Build & Deploy
86+
# 🏗️ Build Test
8787
# ===============================
8888
build:
89-
name: Build & Deploy
89+
name: Build Test
9090
runs-on: ubuntu-latest
9191
needs: [quality, security]
9292
if: github.event_name != 'schedule' && (github.ref == 'refs/heads/main' || github.event_name == 'pull_request')
@@ -110,23 +110,6 @@ jobs:
110110
NEXT_PUBLIC_SUPABASE_URL: ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
111111
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.NEXT_PUBLIC_SUPABASE_ANON_KEY }}
112112

113-
- name: Deploy to Vercel (Production)
114-
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
115-
uses: amondnet/vercel-action@16e87c0a08142b0797e9d759f17b9b4a52c31240 # v25.2.0
116-
with:
117-
vercel-token: ${{ secrets.VERCEL_TOKEN }}
118-
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
119-
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
120-
vercel-args: '--prod'
121-
122-
- name: Deploy to Vercel (Preview)
123-
if: github.event_name == 'pull_request'
124-
uses: amondnet/vercel-action@16e87c0a08142b0797e9d759f17b9b4a52c31240 # v25.2.0
125-
with:
126-
vercel-token: ${{ secrets.VERCEL_TOKEN }}
127-
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
128-
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
129-
130113
# ===============================
131114
# 🔍 Airdrop Monitoring
132115
# ===============================

0 commit comments

Comments
 (0)