Skip to content

VKT(Backend): Fix test setup #2163

VKT(Backend): Fix test setup

VKT(Backend): Fix test setup #2163

Workflow file for this run

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 }}