improvement(parallel): update parallel subflow to support conditional routing #4356
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main, staging] | |
| pull_request: | |
| branches: [main, staging] | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| test: | |
| name: Test and Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: latest | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Run tests with coverage | |
| env: | |
| NODE_OPTIONS: '--no-warnings' | |
| NEXT_PUBLIC_APP_URL: 'https://www.sim.ai' | |
| DATABASE_URL: 'postgresql://postgres:postgres@localhost:5432/simstudio' | |
| ENCRYPTION_KEY: '7cf672e460e430c1fba707575c2b0e2ad5a99dddf9b7b7e3b5646e630861db1c' # dummy key for CI only | |
| run: bun run test | |
| - name: Build application | |
| env: | |
| NODE_OPTIONS: '--no-warnings' | |
| NEXT_PUBLIC_APP_URL: 'https://www.sim.ai' | |
| DATABASE_URL: 'postgresql://postgres:postgres@localhost:5432/simstudio' | |
| STRIPE_SECRET_KEY: 'dummy_key_for_ci_only' | |
| STRIPE_WEBHOOK_SECRET: 'dummy_secret_for_ci_only' | |
| RESEND_API_KEY: 'dummy_key_for_ci_only' | |
| AWS_REGION: 'us-west-2' | |
| ENCRYPTION_KEY: '7cf672e460e430c1fba707575c2b0e2ad5a99dddf9b7b7e3b5646e630861db1c' # dummy key for CI only | |
| run: bun run build | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| directory: ./apps/sim/coverage | |
| fail_ci_if_error: false | |
| verbose: true | |
| # Call GHCR build workflow (runs in parallel with ECR) | |
| build-ghcr: | |
| name: Build GHCR Images | |
| needs: test | |
| if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging') | |
| uses: ./.github/workflows/build-ghcr-build.yml | |
| secrets: inherit | |
| permissions: | |
| contents: read | |
| packages: write | |
| # Call ECR build workflow (runs in parallel with GHCR build) | |
| build-ecr-deploy: | |
| name: Build ECR and Deploy | |
| needs: test | |
| if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging') | |
| uses: ./.github/workflows/build-ecr.yml | |
| secrets: inherit | |
| permissions: | |
| id-token: write | |
| contents: read | |
| # Call Trigger.dev deploy workflow (runs in parallel) | |
| trigger-deploy: | |
| name: Deploy Trigger.dev | |
| needs: test | |
| if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging') | |
| uses: ./.github/workflows/trigger-deploy.yml | |
| secrets: inherit | |
| # Push GHCR images after ECR/ECS deployment is complete | |
| push-ghcr: | |
| name: Push GHCR Images | |
| needs: [build-ghcr, build-ecr-deploy] | |
| if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging') | |
| uses: ./.github/workflows/build-ghcr-push.yml | |
| secrets: inherit | |
| permissions: | |
| contents: read | |
| packages: write | |
| # Run database migrations (depends on GHCR push and trigger deployment) | |
| migrations: | |
| name: Apply Database Migrations | |
| needs: [push-ghcr, trigger-deploy] | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging') | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Apply migrations | |
| working-directory: ./packages/db | |
| env: | |
| DATABASE_URL: ${{ github.ref == 'refs/heads/main' && secrets.DATABASE_URL || secrets.STAGING_DATABASE_URL }} | |
| run: bunx drizzle-kit migrate --config=./drizzle.config.ts | |
| # Process docs embeddings if needed | |
| process-docs: | |
| name: Process Docs | |
| needs: migrations | |
| if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging') | |
| uses: ./.github/workflows/docs-embeddings.yml | |
| secrets: inherit |