mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* CI: Added junit test report * Removed leftover * Tesing * removed reporter * set max workers 2 * another test * Fixed unit test * Restored ci stuff
26 lines
633 B
JavaScript
26 lines
633 B
JavaScript
module.exports = function(config, grunt) {
|
|
'use strict';
|
|
|
|
return {
|
|
tslintPackages: {
|
|
command: 'yarn workspaces run tslint',
|
|
src: ['packages/**/*.ts*'],
|
|
},
|
|
tslintRoot: {
|
|
command: 'yarn run tslint',
|
|
src: ['public/app/**/*.ts*'],
|
|
},
|
|
typecheckPackages: {
|
|
command: 'yarn workspaces run typecheck',
|
|
src: ['packages/**/*.ts*'],
|
|
},
|
|
typecheckRoot: {
|
|
command: 'yarn run typecheck',
|
|
src: ['public/app/**/*.ts*'],
|
|
},
|
|
jest: 'yarn run jest-ci',
|
|
webpack:
|
|
'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
|
|
};
|
|
};
|