Move new section #1561
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: 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" |