disable github actor for testing #324
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
| # Build | |
| # - Tests Auth0 Passwordless Action | |
| # - Validates Terraform configuration | |
| name: Build | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| # Test Auth0 passkey policy | |
| passwordless: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Use pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Use Node.js 22.x | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22.x | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| shell: bash | |
| run: pnpm install | |
| # Test Auth0 Passwordless Action | |
| - name: Test Auth0 Passwordless Action | |
| uses: ./.github/actions/test-passwordless | |
| # Validate Terraform configuration | |
| terraform: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| # Validate Terraform configuration | |
| - name: Validate Terraform | |
| uses: ./.github/actions/validate-terraform |