Version 2.3.1
[poolifier.git] / .github / workflows / npmpublish.yml
index cc9523aba15515b50ce59f85a170256236a24aa4..7068c27db1c1c5efcaa99884a446d2298d4dba1b 100644 (file)
@@ -20,19 +20,19 @@ jobs:
       - name: Install
         run: npm ci
 
-      - name: Production Build
-        run: npm run build:prod
-
-      - name: Lint
-        run: npm run lint
-
-      - name: Production Tests & Coverage
+      - name: Tests & Coverage
         run: |
-          npm run test:prod
+          npm run test
           npm run coverage
         env:
           CI: true
 
+      - name: Lint
+        run: npm run lint
+
+      - name: Production Build
+        run: npm run build:prod
+
   publish-npm:
     needs: build
     runs-on: ubuntu-latest