You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2023/06/16 18:00:56 UTC

[superset] branch master updated: chore(ci): make eslint and jest run in --quiet mode (#24430)

This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 01689b4c94 chore(ci): make eslint and jest run in --quiet mode (#24430)
01689b4c94 is described below

commit 01689b4c9483f40bd0a3fdf98fa2331d31cbeba1
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Fri Jun 16 11:00:46 2023 -0700

    chore(ci): make eslint and jest run in --quiet mode (#24430)
---
 .github/workflows/superset-frontend.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/superset-frontend.yml b/.github/workflows/superset-frontend.yml
index a804551846..aeb258cd26 100644
--- a/.github/workflows/superset-frontend.yml
+++ b/.github/workflows/superset-frontend.yml
@@ -41,7 +41,7 @@ jobs:
         if: steps.check.outcome == 'failure'
         working-directory: ./superset-frontend
         run: |
-          npm run lint
+          npm run lint -- --quiet
           npm run prettier-check
       - name: Build plugins packages
         if: steps.check.outcome == 'failure'
@@ -60,7 +60,7 @@ jobs:
         if: steps.check.outcome == 'failure'
         working-directory: ./superset-frontend
         run: |
-          npm run test -- --coverage
+          npm run test -- --coverage --silent
       # todo: remove this step when fix generator as a project in root jest.config.js
       - name: generator-superset unit tests
         if: steps.check.outcome == 'failure'