Skip to content

[Bug] PRMDR-647 - Add path finding to previous page click #652

[Bug] PRMDR-647 - Add path finding to previous page click

[Bug] PRMDR-647 - Add path finding to previous page click #652

# .github/workflows/terraform-dev
name: 'CI UI - Development CI Feature Branch to Main'
on:
push:
branches:
- main
paths:
- 'app/**'
pull_request:
branches:
- main
paths:
- 'app/**'
permissions:
pull-requests: write
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
jobs:
react_testing_job:
name: Run UI Unit Tests
uses: ./.github/workflows/base-jest-test.yml
with:
build_branch: ${{github.event.pull_request.head.ref}}
cypress_build_job:
name: Build UI version for E2E Tests
uses: ./.github/workflows/base-cypress-build.yml
with:
build_branch: ${{github.event.pull_request.head.ref}}
cypress_test_job:
name: Run Cypress E2E Tests
needs: [cypress_build_job]
uses: ./.github/workflows/base-cypress-test-all-env.yml
with:
cypress_base_url: ${{ vars.CYPRESS_BASE_URL }}
build_branch: ${{github.event.pull_request.head.ref}}
deploy_ui:
name: Deploy UI
if: github.ref == 'refs/heads/main'
needs: ["lambda_test_job", "react_testing_job", "cypress_test_job"]

Check failure on line 45 in .github/workflows/ui-dev-to-main-ci.yml

View workflow run for this annotation

GitHub Actions / CI UI - Development CI Feature Branch to Main

Invalid workflow file

The workflow is not valid. .github/workflows/ui-dev-to-main-ci.yml (Line: 45, Col: 13): Job 'deploy_ui' depends on unknown job 'lambda_test_job'.
uses: ./.github/workflows/base-deploy-ui.yml
with:
build_branch: ${{github.event.pull_request.head.ref}}
environment: development
sandbox: ndr-dev
secrets:
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}