mirror of
https://github.com/grafana/grafana.git
synced 2025-09-27 20:34:04 +08:00

* Chore: use jest without grunt * Run no-focus-convey-tests and no-only-tests as well * Update lib.star test-backend script with no-focus test to run first * Lets see a failing test * Revert "Lets see a failing test" This reverts commit cb6c6ed67dd5403a16d4418aea3260ea8a286107. * Update no-focus-convey test to a script * Update scripts/lib.star Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com> * Update drone.yml Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
17 lines
363 B
JavaScript
17 lines
363 B
JavaScript
module.exports = function(config, grunt) {
|
|
'use strict';
|
|
|
|
return {
|
|
eslint: {
|
|
command: 'yarn lint',
|
|
},
|
|
typecheckPackages: {
|
|
command: 'yarn packages:typecheck',
|
|
},
|
|
typecheckRoot: {
|
|
command: 'yarn typecheck',
|
|
},
|
|
webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
|
|
};
|
|
};
|