Skip to content

chore: Dialog container into UI step 1 #7726

chore: Dialog container into UI step 1

chore: Dialog container into UI step 1 #7726

Workflow file for this run

name: PR
on:
pull_request:
branches: [main]
merge_group:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
permissions:
contents: read
jobs:
detect_changes:
uses: ./.github/workflows/job_detect_changes.yaml
test_packages:
name: Test Packages
uses: ./.github/workflows/job_test_unit.yaml
build:
name: Build
if: needs.detect_changes.outputs.api == 'true'
needs: [detect_changes]
uses: ./.github/workflows/build.yaml
test_api:
name: Test API
if: needs.detect_changes.outputs.api == 'true'
needs: [detect_changes]
uses: ./.github/workflows/job_test_api_local.yaml
test_agent_local:
name: Test Agent Local
if: needs.detect_changes.outputs.agent == 'true'
needs: [detect_changes]
uses: ./.github/workflows/job_test_agent_local.yaml
# test_agent_integration:
# name: Test Agent Integration
# runs-on: ubuntu-latest
# timeout-minutes: 60
# steps:
# - uses: actions/checkout@v4
# - name: Run containers
# run: docker compose -f ./deployment/docker-compose.yaml up -d agent
# - name: Install
# uses: ./.github/actions/install
# with:
# go: true
# - name: Test
# run: go test -v -cover -json -timeout=60m -failfast ./integration/identities/... ./integration/cluster/... | tparse -all -progress -smallscreen
# env:
# CLUSTER_TEST: true
# AGENT_BASE_URL: "http://localhost:8080"
# working-directory: apps/agent
test_go_api_local:
name: Test Go API Local
if: needs.detect_changes.outputs.api == 'true'
needs: [detect_changes]
uses: ./.github/workflows/job_test_go_api_local.yaml