Integration Tests | API - All #301
Workflow file for this run
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: Integration Tests | API - All | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main] | ||
permissions: | ||
id-token: write | ||
contents: read | ||
concurrency: | ||
group: ${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: ${{ github.ref_name != 'main'}} | ||
jobs: | ||
functional-test: | ||
name: Functional Tests | ||
uses: ./.github/workflows/integ_test_api_functional.yml | ||
secrets: inherit | ||
graphql-user-pool-test: | ||
if: ${{ false }} | ||
name: GraphQL | User Pool Tests | ||
uses: ./.github/workflows/integ_test_api_graphql_user_pool.yml | ||
secrets: inherit | ||
graphql-auth-directive-test: | ||
if: ${{ false }} | ||
name: GraphQL | Auth Directive Tests | ||
uses: ./.github/workflows/integ_test_api_graphql_auth_directive.yml | ||
secrets: inherit | ||
graphql-iam-test: | ||
if: ${{ false }} | ||
name: GraphQL | IAM Tests | ||
Check failure on line 35 in .github/workflows/integ_test_api.yml GitHub Actions / Integration Tests | API - AllInvalid workflow file
|
||
uses: ./.github/workflows/integ_test_api_graphql_iam.yml | ||
secrets: inherit | ||
graphql-lambda-auth-test: | ||
name: GraphQL | Lambda Tests | ||
uses: ./.github/workflows/integ_test_api_graphql_lambda_auth.yml | ||
secrets: inherit | ||
graphql-lazy-load-test: | ||
if: ${{ false }} | ||
name: GraphQL | Lazy Load Tests | ||
uses: ./.github/workflows/integ_test_api_graphql_lazy_load.yml | ||
secrets: inherit | ||
rest-user-pool-test: | ||
if: ${{ false }} | ||
name: REST | User Pool Tests | ||
uses: ./.github/workflows/integ_test_api_rest_user_pool.yml | ||
secrets: inherit | ||
rest-iam-test: | ||
name: REST | IAM Tests | ||
uses: ./.github/workflows/integ_test_api_rest_iam.yml | ||
secrets: inherit |