From 1ca91d684f789edacd47d1bcb03361f88c64edd5 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Wed, 8 Jul 2026 14:08:41 -0400 Subject: [PATCH] fix: remove redundant lint job from build workflow and ensure main branch is specified for push events --- .github/workflows/build.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a49b178..5925ff7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,6 +2,7 @@ name: Build validation on: push: + branches: [main] pull_request: jobs: @@ -22,17 +23,3 @@ jobs: - name: Install dependencies run: npm i - run: npm run build - - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Use Node.js 22 - uses: actions/setup-node@v4 - with: - node-version: 22 - cache: 'npm' - - name: Install dependencies - run: npm i - # Lint currently reporting lots of preexisting issues - # - run: npm run lint