Sample spans always in Nodejs sample app (#1498) #166
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: "Continuous Build (Terraform)" | |
on: | |
push: | |
paths: | |
- '**/*.tf' | |
- '.github/workflows/ci-terraform.yml' | |
branches: | |
- main | |
pull_request: | |
paths: | |
- '**/*.tf' | |
- '.github/workflows/ci-terraform.yml' | |
branches: | |
- main | |
jobs: | |
check-terraform-syntax: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hashicorp/setup-terraform@v3 | |
- run: terraform fmt -check -recursive |