We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ea01c3 commit 9196298Copy full SHA for 9196298
.github/workflows/ci.yml
@@ -26,5 +26,11 @@ jobs:
26
- name: Install deps and build (with cache)
27
uses: bahmutov/npm-install@v1
28
29
+ - name: Typecheck
30
+ run: npm run typecheck
31
+
32
- name: Test package
33
run: npm run test
34
35
+ - name: Lint
36
+ run: npm run lint
package.json
@@ -15,6 +15,7 @@
15
"lint": "eslint .",
16
"test": "jest",
17
"test:watch": "jest --watchAll --verbose",
18
+ "typecheck": "tsc --noEmit",
19
"prepublishOnly": "npm run lint && npm run test"
20
},
21
"dependencies": {
0 commit comments