diff --git a/jest.config.js b/jest.config.js index 4fdd9ba2d..63a691389 100644 --- a/jest.config.js +++ b/jest.config.js @@ -18,4 +18,8 @@ const customJestConfig = { verbose: true, } +if (process.env.CI) { + customJestConfig.reporters = [['github-actions', { silent: false }], 'summary'] +} + export default customJestConfig