Bump @auth0/actions from 0.15.0 to 0.17.0 in the infrastructure group… #315
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: Build | |
| on: [push] | |
| jobs: | |
| # This job runs tests for Auth0 passkey policy | |
| passwordless: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Use pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Lint | |
| run: pnpm lint:check | |
| - name: Format | |
| run: pnpm format:check | |
| - name: Run tests | |
| run: pnpm test | |
| terraform: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup Terraform | |
| uses: hashicorp/setup-terraform@v4 | |
| with: | |
| terraform_version: 1.x.x # Specify your desired Terraform version | |
| - name: Configure Terraform plugin cache | |
| run: | | |
| echo "TF_PLUGIN_CACHE_DIR=$HOME/.terraform.d/plugin-cache" >>"$GITHUB_ENV" | |
| mkdir -p "$HOME/.terraform.d/plugin-cache" | |
| - name: Cache Terraform | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.terraform.d/plugin-cache | |
| key: terraform-${{ runner.os }}-${{ hashFiles('**/.terraform.lock.hcl') }} | |
| restore-keys: | | |
| terraform-${{ runner.os }}- | |
| - name: Terraform Init | |
| id: init | |
| run: terraform init | |
| working-directory: ./ | |
| - name: Terraform Validate | |
| id: validate | |
| run: terraform validate | |
| working-directory: ./ |