VKT(Frontend): Implement reusing enrollment details to contact anothe… #2210
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: VKT | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "backend/vkt/**" | |
- "frontend/packages/vkt/**" | |
- "frontend/yarn.lock" | |
- "!**/*.md" | |
# Setting 'branches' has the side effect that just pushing tags does not start workflows. | |
branches: | |
- '**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
frontend: | |
uses: ./.github/workflows/common-frontend.yml | |
with: | |
app-name: "vkt" | |
cypress-base-url: "http://localhost:4002" | |
backend: | |
needs: frontend | |
uses: ./.github/workflows/common-backend.yml | |
with: | |
app-name: "vkt" | |
with-wkhtmltopdf: true | |
deploy: | |
needs: backend | |
uses: ./.github/workflows/common-deploy.yml | |
with: | |
app-name: "vkt" | |
image-name: "vkt" | |
with-wkhtmltopdf: true | |
secrets: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |