From 0f90f59a611c1a6e45afb9b09c4387129c7a7ce2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 21 Aug 2021 20:54:03 +0200 Subject: [PATCH] GitHub action: move linter step before the build 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a98db2a..e4d010d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,11 +23,11 @@ jobs: node-version: ${{ matrix.node-version }} - name: npm install run: npm ci - - name: npm run build - run: npm run build - name: npm run lint run: npm run lint continue-on-error: true + - name: npm run build + run: npm run build - name: npm test run: npm test - name: npm run coverage -- 2.34.1