-
-
Notifications
You must be signed in to change notification settings - Fork 575
58 lines (51 loc) · 2.03 KB
/
test.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
name: Test
on: [push, pull_request]
jobs:
dataplan_pg:
name: "@dataplan/pg tests"
uses: ./.github/workflows/test-base.yml
with:
prepackPackages: "{pg-sql2,tamedevil,@dataplan/pg}"
package: "@dataplan/pg"
testcommand: "test"
args: "--ci"
postgraphile_jest:
name: PostGraphile jest tests
uses: ./.github/workflows/test-base.yml
with:
prepackPackages: "{pg-sql2,tamedevil,postgraphile}"
package: "postgraphile"
testcommand: "test:jest"
args: "--ci"
postgraphile_schema_exports:
name: PostGraphile schema export tests
uses: ./.github/workflows/test-base.yml
with:
prepackPackages: "{pg-sql2,tamedevil,postgraphile}"
package: "postgraphile"
testcommand: "test:schema-exports"
args: "--ci"
postgraphile_export_typeDefs:
name: PostGraphile tests (exported as typeDefs)
uses: ./.github/workflows/test-base.yml
with:
prepackPackages: "{pg-sql2,tamedevil,postgraphile}"
package: "postgraphile"
testcommand: "test:operations-exports:typeDefs"
args: "--ci"
postgraphile_export_graphqljs:
name: PostGraphile tests (exported as graphql-js)
uses: ./.github/workflows/test-base.yml
with:
prepackPackages: "{pg-sql2,tamedevil,postgraphile}"
package: "postgraphile"
testcommand: "test:operations-exports:graphql-js"
args: "--ci"
small_packages:
name: Small package tests
uses: ./.github/workflows/test-base.yml
with:
prepackPackages: "{pg-sql2,tamedevil,@grafserv/persisted,@graphile/lru,@graphile/simplify-inflection,@localrepo/grafast-bench,@localrepo/grafast-website,grafast,graphile,graphile-config,graphile-utils,jest-serializer-graphql-schema,pg-introspection,grafserv}"
package: "{pg-sql2,tamedevil,@grafserv/persisted,@graphile/lru,@graphile/simplify-inflection,@localrepo/grafast-bench,@localrepo/grafast-website,grafast,graphile,graphile-config,graphile-utils,jest-serializer-graphql-schema,pg-introspection,grafserv}"
testcommand: "test"
args: "--ci"