This repository was archived by the owner on Dec 10, 2025. It is now read-only.
chore(deps): bump the github-actions-breaking group across 1 directory with 7 updates #7328
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: Unit Tests - PR | |
| on: | |
| merge_group: | |
| types: [checks_requested] | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - labeled | |
| - unlabeled | |
| - reopened | |
| jobs: | |
| all_unit_tests: | |
| name: "All Unit Tests" | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci/skip-unit') }} | |
| uses: ./.github/workflows/unit.yml | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| package: | |
| [ | |
| cdktf, | |
| cdktf-cli, | |
| "@cdktf/hcl2cdk", | |
| "@cdktf/hcl2json", | |
| "@cdktf/provider-schema", | |
| "@cdktf/provider-generator", | |
| "@cdktf/commons", | |
| "@cdktf/cli-core", | |
| ] | |
| terraform_version: ["1.6.5", "1.5.5"] | |
| with: | |
| concurrency_group_prefix: pr-all | |
| package: ${{ matrix.package }} | |
| terraform_version: ${{ matrix.terraform_version }} | |
| secrets: inherit | |
| cdktf_cli_core: | |
| name: "@cdktf/cli Unit Tests" | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'ci/run-unit/@cdktf/cli-core') }} | |
| uses: ./.github/workflows/unit.yml | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| terraform_version: ["1.6.5"] | |
| with: | |
| concurrency_group_prefix: pr-cdktf-cli-core | |
| package: "@cdktf/cli-core" | |
| terraform_version: ${{ matrix.terraform_version }} | |
| secrets: inherit | |
| cdktf_commons: | |
| name: "@cdktf/commons Unit Tests" | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'ci/run-unit/@cdktf/commons') }} | |
| uses: ./.github/workflows/unit.yml | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| terraform_version: ["1.6.5"] | |
| with: | |
| concurrency_group_prefix: pr-cdktf-commons | |
| package: "@cdktf/commons" | |
| terraform_version: ${{ matrix.terraform_version }} | |
| secrets: inherit | |
| cdktf_hcl2cdk: | |
| name: "@cdktf/hcl2cdk Unit Tests" | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'ci/run-unit/@cdktf/hcl2cdk') }} | |
| uses: ./.github/workflows/unit.yml | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| terraform_version: ["1.6.5"] | |
| with: | |
| concurrency_group_prefix: pr-cdktf-hcl2cdk | |
| package: "@cdktf/hcl2cdk" | |
| terraform_version: ${{ matrix.terraform_version }} | |
| secrets: inherit | |
| cdktf_hcl2json: | |
| name: "@cdktf/hcl2json Unit Tests" | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'ci/run-unit/@cdktf/hcl2json') }} | |
| uses: ./.github/workflows/unit.yml | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| terraform_version: ["1.6.5"] | |
| with: | |
| concurrency_group_prefix: pr-cdktf-hcl2json | |
| package: "@cdktf/hcl2json" | |
| terraform_version: ${{ matrix.terraform_version }} | |
| secrets: inherit | |
| cdktf_provider_generator: | |
| name: "@cdktf/provider-generator Unit Tests" | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'ci/run-unit/@cdktf/provider-generator') }} | |
| uses: ./.github/workflows/unit.yml | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| terraform_version: ["1.6.5"] | |
| with: | |
| concurrency_group_prefix: pr-cdktf-provider-generator | |
| package: "@cdktf/provider-generator" | |
| terraform_version: ${{ matrix.terraform_version }} | |
| secrets: inherit | |
| cdktf_cli: | |
| name: "cdktf-cli Unit Tests" | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'ci/run-unit/cdktf-cli') }} | |
| uses: ./.github/workflows/unit.yml | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| terraform_version: ["1.6.5"] | |
| with: | |
| concurrency_group_prefix: pr-cdktf-cli | |
| package: "cdktf-cli" | |
| terraform_version: ${{ matrix.terraform_version }} | |
| secrets: inherit | |
| cdktf: | |
| name: "cdktf Unit Tests" | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'ci/run-unit/cdktf') }} | |
| uses: ./.github/workflows/unit.yml | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| terraform_version: ["1.6.5"] | |
| with: | |
| concurrency_group_prefix: pr-cdktf | |
| package: "cdktf" | |
| terraform_version: ${{ matrix.terraform_version }} | |
| secrets: inherit | |
| results: | |
| if: ${{ always() }} | |
| runs-on: ubuntu-latest | |
| name: Unit Tests - PR - Result | |
| needs: | |
| [ | |
| all_unit_tests, | |
| cdktf, | |
| cdktf_cli, | |
| cdktf_provider_generator, | |
| cdktf_hcl2json, | |
| cdktf_hcl2cdk, | |
| cdktf_commons, | |
| cdktf_cli_core, | |
| ] | |
| steps: | |
| - run: exit 1 | |
| if: >- | |
| ${{ | |
| contains(needs.*.result, 'failure') | |
| || contains(needs.*.result, 'cancelled') | |
| }} |