Skip to content

Commit

Permalink
ci: improve pushDev/pushNext workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Apr 3, 2024
1 parent f40eb0a commit 7d95ecf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/pushDev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,7 @@ jobs:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
e2eTestsDdb-setup:
needs:
- constants
- build
- e2eTestsDdb-constants
name: E2E (DDB) - Project setup
Expand Down Expand Up @@ -569,6 +570,7 @@ jobs:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
e2eTestsDdb-es-setup:
needs:
- constants
- build
- e2eTestsDdb-es-constants
name: E2E (DDB-ES) - Project setup
Expand Down Expand Up @@ -775,6 +777,7 @@ jobs:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
e2eTestsDdb-os-setup:
needs:
- constants
- build
- e2eTestsDdb-os-constants
name: E2E (DDB-OS) - Project setup
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pushNext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,7 @@ jobs:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
e2eTestsDdb-setup:
needs:
- constants
- build
- e2eTestsDdb-constants
name: E2E (DDB) - Project setup
Expand Down Expand Up @@ -569,6 +570,7 @@ jobs:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
e2eTestsDdb-es-setup:
needs:
- constants
- build
- e2eTestsDdb-es-constants
name: E2E (DDB-ES) - Project setup
Expand Down Expand Up @@ -775,6 +777,7 @@ jobs:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
e2eTestsDdb-os-setup:
needs:
- constants
- build
- e2eTestsDdb-os-constants
name: E2E (DDB-OS) - Project setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wac/push.wac.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const createCypressJobs = (dbSetup: string) => {
}

const projectSetupJob: NormalJob = createJob({
needs: ["build", jobNames.constants],
needs: ["constants", "build", jobNames.constants],
name: `E2E (${dbSetup.toUpperCase()}) - Project setup`,
outputs: {
"cypress-config": "${{ steps.save-cypress-config.outputs.cypress-config }}"
Expand Down

0 comments on commit 7d95ecf

Please sign in to comment.