We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b11ac8 commit 733d6ffCopy full SHA for 733d6ff
.github/workflows/main.yml
@@ -22,7 +22,9 @@ jobs:
22
with:
23
node-version: ${{ matrix.node-version }}
24
- run: npm install
25
- - run: npm test
+ - run: npm run lint
26
+ - run: npm run type
27
+ - run: npm run unit
28
- uses: codecov/codecov-action@v4
29
30
token: ${{ secrets.CODECOV_TOKEN }}
package.json
@@ -20,7 +20,10 @@
20
"node": ">=18"
21
},
"scripts": {
- "test": "xo && c8 ava && tsd && tsc && npx --yes tsd@0.29.0 && npx --yes --package typescript@5.1 tsc"
+ "test": "npm run lint && npm run unit && npm run type",
+ "lint": "xo",
+ "unit": "c8 ava",
+ "type": "tsd && tsc && npx --yes tsd@0.29.0 && npx --yes --package typescript@5.1 tsc"
"files": [
"index.js",
0 commit comments