From c3d7c4f36a822461d84b6d0b866747fc87106df9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 22 Oct 2022 11:23:05 +0200 Subject: [PATCH] Speed CI by removing non working eslint report import MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68a87623..3ee63b19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,12 +44,9 @@ jobs: - name: Tests run: npm run test - - name: Coverage & Linter Reports + - name: Coverage Report if: "github.repository == 'poolifier/poolifier' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'" - run: | - npm run coverage - npm run lint:report - sed -i 's+/home/runner/work/+/github/workspace/+g' reports/eslint.json + run: npm run coverage - name: Sonar Code Analysis if: "github.repository == 'poolifier/poolifier' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'" -- 2.34.1