From 155c85d21b99968eb2fdc6d1c91536124f8baf62 Mon Sep 17 00:00:00 2001 From: Gabe Cook Date: Mon, 11 Mar 2024 15:52:46 -0500 Subject: [PATCH] ci: Build web concurrently --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d5507d44..b058bfcc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -185,7 +185,6 @@ jobs: build-web: name: Build Web runs-on: ubuntu-latest - needs: [lint, test] steps: - name: Checkout uses: actions/checkout@v4 @@ -219,7 +218,7 @@ jobs: deploy-web: name: Deploy Web if: startsWith(github.ref, 'refs/tags/') - needs: build-web + needs: [lint, test, build-web] runs-on: ubuntu-latest environment: name: github-pages