diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e973b6a..7c00db6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -25,6 +25,9 @@ jobs: - name: Install Dependencies run: npm i + - name: Build Project + run: npm run build + - name: Test run: npm run test:coverage diff --git a/package.json b/package.json index a2d03bc..f512e04 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,6 @@ "module": "./dist/js-utilities.mjs", "types": "./dist/src/index.d.ts", "scripts": { - "postinstall": "npm run build", "build": "vite build", "test": "npx jest", "test:coverage": "npx jest --coverage",