From d9c2bc2f4de322cf0eb7e198cd3b47ed6982aff4 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Fri, 7 Aug 2026 15:07:05 -0400 Subject: [PATCH] ci: Make eslint check fail on errors In #32148, the eslint check posted errors, but the job did not fail. This setting ensure that it _will_ fail when it posts errors. --- .github/workflows/linting.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index e3117c7a5ea1..848968464c8e 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -134,3 +134,4 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} reporter: github-check workdir: 'lib/matplotlib/backends/web_backend/' + fail_level: error