From: Jérôme Benoit Date: Sat, 15 Oct 2022 19:17:00 +0000 (+0200) Subject: Revert "CI: move linting after installation" X-Git-Tag: v2.3.4~11 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=73db65c0c7af9778bec7529fd80a66bca647d8b2;p=poolifier.git Revert "CI: move linting after installation" This reverts commit a34ce9a052739a56d764ba1aa3ede8d19aded4e3. --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63f2552b..d9233944 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,12 +35,12 @@ jobs: - name: Install run: npm ci - - name: Lint - run: npm run lint - - name: Build run: npm run build --if-present + - name: Lint + run: npm run lint + - name: Tests if: "matrix.os != 'windows-latest' || matrix.node != '18.x'" run: npm run test diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index e05691eb..6b1a3731 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -20,14 +20,14 @@ jobs: - name: Install run: npm ci - - name: Lint - run: npm run lint - - name: Tests & Coverage run: | npm run test npm run coverage + - name: Lint + run: npm run lint + - name: Production Build run: npm run build:prod