Skip to content

Commit

Permalink
ci: Build web concurrently
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Mar 11, 2024
1 parent 2d6ae51 commit 155c85d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ jobs:
build-web:
name: Build Web
runs-on: ubuntu-latest
needs: [lint, test]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 155c85d

Please sign in to comment.