Skip to content

Commit 9196298

Browse files
committed
Update gh action
1 parent 1ea01c3 commit 9196298

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,11 @@ jobs:
2626
- name: Install deps and build (with cache)
2727
uses: bahmutov/npm-install@v1
2828

29+
- name: Typecheck
30+
run: npm run typecheck
31+
2932
- name: Test package
3033
run: npm run test
34+
35+
- name: Lint
36+
run: npm run lint

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"lint": "eslint .",
1616
"test": "jest",
1717
"test:watch": "jest --watchAll --verbose",
18+
"typecheck": "tsc --noEmit",
1819
"prepublishOnly": "npm run lint && npm run test"
1920
},
2021
"dependencies": {

0 commit comments

Comments
 (0)