We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 318102c + 9c78799 commit 572be17Copy full SHA for 572be17
.github/workflows/build.yml
@@ -22,5 +22,9 @@ jobs:
22
- uses: actions/setup-node@v3
23
with:
24
node-version: ${{ matrix.node-version }}
25
- - run: yarn
26
- - run: yarn test
+ - name: Install dependencies
+ run: yarn
27
+ - name: Build package
28
+ run: yarn run build
29
+ - name: Run test
30
+ run: yarn test
package.json
@@ -18,7 +18,7 @@
18
"test": "jest",
19
"build": "tsup src/index.ts --dts --format esm,cjs --target es5",
20
"clean": "rimraf dist",
21
- "prepare": "run-s clean build"
+ "prepack": "run-s clean build"
},
"devDependencies": {
"@swc/core": "^1.2.210",
0 commit comments