Skip to content

Commit

Permalink
chore: parallelize actions for web, admin-web and api workflows (#1120)
Browse files Browse the repository at this point in the history
  • Loading branch information
ascariandrea authored Jan 17, 2024
1 parent 426a869 commit 990fe30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/admin-web-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

build:
runs-on: ubuntu-latest
needs: [install, build-packages, lint]
needs: [install, build-packages]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/api-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: yarn api lint

build:
needs: [install, build-packages, lint]
needs: [install, build-packages]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -71,7 +71,7 @@ jobs:

test:
runs-on: ubuntu-latest
needs: [install, build-packages, lint, build]
needs: [install, build-packages]
services:
pg-db-test:
image: postgres:14
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
docker_build:
if: ${{ github.head_ref == 'release/alpha' }}
needs: [install, build-packages, lint]
needs: [install, build-packages, lint, build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 990fe30

Please sign in to comment.