Skip to content

Commit

Permalink
Disable schema validation for all integrations
Browse files Browse the repository at this point in the history
  • Loading branch information
zemberdotnet committed Jun 7, 2022
1 parent 7d4fbf3 commit d1e6ee8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/starbase/integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import { StarbaseConfig, StarbaseIntegration } from './types';
import { executeWithLogging } from './process';

async function collectIntegrationData(integrationDirectory: string) {
await executeWithLogging(`yarn --cwd ${integrationDirectory} start;`);
await executeWithLogging(
`yarn --cwd ${integrationDirectory} start --disable-schema-validation;`,
);
}

async function writeIntegrationDataToNeo4j(
Expand Down

0 comments on commit d1e6ee8

Please sign in to comment.