Skip to content

Commit

Permalink
fix(workspace): pipeline depends on test
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder committed Jul 4, 2024
1 parent 7718211 commit 08d5e1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:

deploy-front-end:
name: Deploy Front-End
needs: [e2e, build, lint]
needs: [test, build, lint, e2e]
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:

deploy-server:
name: Deploy Server
needs: [e2e, build, lint]
needs: [test, build, lint, e2e]
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 08d5e1f

Please sign in to comment.