Skip to content

PLT-228 Add build and deploy workflows #3

PLT-228 Add build and deploy workflows

PLT-228 Add build and deploy workflows #3

Workflow file for this run

name: pull request jobs
on:
pull_request:
jobs:
unit-integration-test:
uses: ./.github/workflows/unit-integration-test.yml
secrets: inherit
deploy-api:
needs: unit-integration-test
uses: ./.github/workflows/deploy.yml
with:
environment: test
module: api
secrets: inherit
deploy-worker:
needs: unit-integration-test
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

Check failure on line 26 in .github/workflows/pull-request.yml

View workflow run for this annotation

GitHub Actions / pull request jobs

Invalid workflow file

The workflow is not valid. In .github/workflows/pull-request.yml (Line: 26, Col: 11): Error from called workflow CMSgov/ab2d/.github/workflows/e2e-test.yml@777eb75065cd8da435fffb687db38f21dc944804 (Line: 83, Col: 14): Unexpected symbol: '"test"'. Located at position 23 within expression: inputs.environment == "test" && "imp" || inputs.environment
with:
environment: test
secrets: inherit