Update cspell words
[poolifier.git] / .github / workflows / npmpublish.yml
index cc9523aba15515b50ce59f85a170256236a24aa4..6b1a3731c6e8678da4fb2320daf009eb9055ad87 100644 (file)
@@ -20,18 +20,16 @@ jobs:
       - name: Install
         run: npm ci
 
-      - name: Production Build
-        run: npm run build:prod
+      - name: Tests & Coverage
+        run: |
+          npm run test
+          npm run coverage
 
       - name: Lint
         run: npm run lint
 
-      - name: Production Tests & Coverage
-        run: |
-          npm run test:prod
-          npm run coverage
-        env:
-          CI: true
+      - name: Production Build
+        run: npm run build:prod
 
   publish-npm:
     needs: build