PLT-695: Update AB2D prod-test ECR tag to avoid overlap with prod #130
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pull request jobs | |
on: | |
pull_request: | |
jobs: | |
unit-integration-test: | |
uses: ./.github/workflows/unit-integration-test.yml | |
secrets: inherit | |
build-api: | |
uses: ./.github/workflows/build.yml | |
with: | |
environment: test | |
module: api | |
secrets: inherit | |
build-worker: | |
uses: ./.github/workflows/build.yml | |
with: | |
environment: test | |
module: worker | |
secrets: inherit | |
deploy-api: | |
needs: build-api | |
permissions: | |
contents: read | |
id-token: write | |
uses: ./.github/workflows/deploy.yml | |
with: | |
environment: test | |
module: api | |
secrets: inherit | |
deploy-worker: | |
needs: build-worker | |
permissions: | |
contents: read | |
id-token: write | |
uses: ./.github/workflows/deploy.yml | |
with: | |
environment: test | |
module: worker | |
secrets: inherit | |
e2e-test: | |
needs: [deploy-api, deploy-worker] | |
uses: ./.github/workflows/e2e-test.yml | |
with: | |
environment: test | |
secrets: inherit |