ci: optimize speed of CI (#7649)

Refs #7627
This commit is contained in:
Vladimir Gorej
2021-11-16 21:22:17 +01:00
committed by GitHub
parent 0e5bc25466
commit 9b5cbecad0
7 changed files with 511 additions and 118 deletions

View File

@@ -1,7 +0,0 @@
const path = require('path');
module.exports = {
rootDir: path.join(__dirname, '..', '..'),
testEnvironment: 'jsdom',
testMatch: ['**/test/build-artifacts/es-bundle-core.js'],
};

View File

@@ -1,7 +0,0 @@
const path = require('path');
module.exports = {
rootDir: path.join(__dirname, '..', '..'),
testEnvironment: 'jsdom',
testMatch: ['**/test/build-artifacts/es-bundle.js'],
};

View File

@@ -3,5 +3,5 @@ const path = require('path');
module.exports = {
rootDir: path.join(__dirname, '..', '..'),
testEnvironment: 'jsdom',
testMatch: ['**/test/build-artifacts/umd.js'],
testMatch: ['**/test/build-artifacts/**/*.js'],
};