chore(ci): make eslint and jest run in --quiet mode (#24430)

This commit is contained in:
Maxime Beauchemin 2023-06-16 11:00:46 -07:00 committed by GitHub
parent 20e0036336
commit 01689b4c94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ jobs:
if: steps.check.outcome == 'failure' if: steps.check.outcome == 'failure'
working-directory: ./superset-frontend working-directory: ./superset-frontend
run: | run: |
npm run lint npm run lint -- --quiet
npm run prettier-check npm run prettier-check
- name: Build plugins packages - name: Build plugins packages
if: steps.check.outcome == 'failure' if: steps.check.outcome == 'failure'
@ -60,7 +60,7 @@ jobs:
if: steps.check.outcome == 'failure' if: steps.check.outcome == 'failure'
working-directory: ./superset-frontend working-directory: ./superset-frontend
run: | 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 # todo: remove this step when fix generator as a project in root jest.config.js
- name: generator-superset unit tests - name: generator-superset unit tests
if: steps.check.outcome == 'failure' if: steps.check.outcome == 'failure'