feat(lib): Add DynamicListTerraformIterator with support for lists or sets with objects that have properties that are only known at apply time #2239
Workflow file for this run
This file contains 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: Linting | |
on: | |
merge_group: | |
types: [checks_requested] | |
pull_request: {} # All changes need linting | |
workflow_call: | |
inputs: | |
concurrency_group_prefix: | |
default: pr | |
required: false | |
type: string | |
concurrency: | |
group: ${{ inputs.concurrency_group_prefix }}-linting-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: installing dependencies | |
run: | | |
yarn install --frozen-lockfile | |
- name: run prettier | |
run: | | |
yarn lint:prettier | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: installing dependencies | |
run: | | |
yarn install --frozen-lockfile | |
- name: run workspace linting | |
run: | | |
yarn lint:workspace |