Bump @vercel/ncc from 0.38.1 to 0.38.3 #267
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: Test Steampipe Check action | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Setup Steampipe and install plugins | |
id: setup-steampipe | |
uses: turbot/steampipe-action-setup@v1 | |
with: | |
plugin-connections: | | |
connection "aws_tf" { | |
plugin = "terraform" | |
configuration_file_paths = [ "./tests/terraform/aws/**/*.tf" ] | |
} | |
- name: Run Terraform checks | |
uses: ./ | |
with: | |
mod-url: https://github.com/turbot/steampipe-mod-terraform-aws-compliance | |
additional-args: --output=none # Added to reduce stdout when running tests |