Skip to content

Assessment: Enable ScoreLevel Sorting in Assessment Overview Page #1232

Assessment: Enable ScoreLevel Sorting in Assessment Overview Page

Assessment: Enable ScoreLevel Sorting in Assessment Overview Page #1232

Workflow file for this run

name: Build and Deploy to Dev
on:
pull_request:
branches: [main]
jobs:
lint-servers:
uses: ./.github/workflows/lint-servers.yml
secrets: inherit
test-servers:
needs: lint-servers
uses: ./.github/workflows/test-servers.yml
secrets: inherit
build-servers:
needs: test-servers
uses: ./.github/workflows/build-and-push-servers.yml
secrets: inherit
lint-clients:
uses: ./.github/workflows/lint-clients.yml
secrets: inherit
build-clients:
needs: lint-clients
uses: ./.github/workflows/build-and-push-clients.yml
secrets: inherit
deploy-dev:
needs: [build-clients, build-servers]
uses: ./.github/workflows/deploy-docker.yml
secrets: inherit
with:
environment: prompt-dev-vm
core_image_tag: ${{ needs.build-clients.outputs.core_image_tag }}
template_image_tag: ${{ needs.build-clients.outputs.template_image_tag }}
interview_image_tag: ${{ needs.build-clients.outputs.interview_image_tag }}
matching_image_tag: ${{ needs.build-clients.outputs.matching_image_tag }}
intro_course_developer_image_tag: ${{ needs.build-clients.outputs.intro_course_developer_image_tag }}
assessment_image_tag: ${{ needs.build-clients.outputs.assessment_image_tag }}
team_allocation_image_tag: ${{ needs.build-clients.outputs.team_allocation_image_tag }}
self_team_allocation_image_tag: ${{ needs.build-clients.outputs.self_team_allocation_image_tag }}
server_core_image_tag: ${{ needs.build-servers.outputs.server_core_image_tag }}
server_intro_course_image_tag: ${{ needs.build-servers.outputs.server_intro_course_image_tag }}
server_team_allocation_image_tag: ${{ needs.build-servers.outputs.server_team_allocation_image_tag }}
server_assessment_image_tag: ${{ needs.build-servers.outputs.server_assessment_image_tag }}
devops_challenge_image_tag: ${{ needs.build-clients.outputs.devops_challenge_image_tag }}
server_self_team_allocation_image_tag: ${{ needs.build-servers.outputs.server_self_team_allocation_image_tag }}