Add ability for users to enable/disable delgation #13016
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: Lint | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- uses: actions/setup-node@v4 | |
with: | |
cache: yarn | |
node-version-file: .tool-versions | |
- run: yarn install --immutable --immutable-cache --check-cache | |
- uses: jdx/mise-action@v3 | |
with: | |
install_args: hk pkl tflint terraform | |
- run: tflint --chdir=terraform --init | |
- run: hk check --all |