From: Jérôme Benoit Date: Sat, 21 Aug 2021 18:54:03 +0000 (+0200) Subject: GitHub action: move linter step before the build X-Git-Tag: v1.0.40~6 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=0f90f59a611c1a6e45afb9b09c4387129c7a7ce2;p=e-mobility-charging-stations-simulator.git GitHub action: move linter step before the build Signed-off-by: Jérôme Benoit --- 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