#37 Upgrade NodeJS version in CloudFormation template (#38) #34
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: CI Build | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
jobs: | |
build: | |
defaults: | |
run: | |
shell: "bash" | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install tflint | |
uses: terraform-linters/setup-tflint@v4 | |
with: | |
tflint_version: v0.50.3 | |
- name: Log Terraform version | |
run: | | |
terraform version | |
tflint --version | |
- name: Run CI Script | |
run: ./scripts/ci.sh |