-
Notifications
You must be signed in to change notification settings - Fork 199
59 lines (49 loc) · 1.48 KB
/
integ_test_api.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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
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