We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 912854e commit 13aa620Copy full SHA for 13aa620
.github/workflows/npm-pr.yml
@@ -14,8 +14,7 @@ jobs:
14
- uses: actions/setup-node@v3
15
with:
16
node-version: 16
17
- - run: npm ci
18
- - run: npm run build
+ - run: npm clean-install
19
- run: npm run lint
20
- run: npm test
21
package.json
@@ -26,7 +26,7 @@
26
"coverage": "jest --coverage",
27
"clean": "rm -rf output",
28
"build": "tsc",
29
- "prepublishOnly": "npm run build",
+ "postprepare": "npm run build",
30
"start": "node ./index.js",
31
"lint": "npm run lint:prettier && npm run lint:eslint",
32
"lint:eslint": "eslint --ext .ts .",
0 commit comments