Skip to content

Commit a3039e1

Browse files
committed
chore(ci): lint and tyeps check
1 parent b470362 commit a3039e1

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,11 @@ jobs:
2727
- name: Install dependencies
2828
run: npm ci
2929

30+
- name: Run linter
31+
run: npm run lint
32+
33+
- name: Run type checker
34+
run: npm run test:types
35+
3036
- name: Run tests
3137
run: npm test

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"test": "vitest --run",
1111
"test:watch": "vitest",
1212
"lint": "eslint src",
13-
"release": "dotenv release-it --"
13+
"release": "dotenv release-it --",
14+
"test:types": "tsc --noEmit"
1415
},
1516
"author": {
1617
"name": "V.Symonenko",

0 commit comments

Comments
 (0)