Skip to content

Commit f6f3927

Browse files
committed
cicd: add explicit type-checking to workflows.
1 parent d018722 commit f6f3927

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
- name: Use NPM 8
2222
run: npm i -g npm@8
2323
- run: npm ci
24+
- name: types
25+
run: npm run check:types
2426
- name: build
2527
run: npm run build
2628
- name: test

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
node-version: lts/*
3030
registry-url: https://registry.npmjs.org
3131
- run: npm ci
32+
- name: types
33+
run: npm run check:types
3234
- name: build
3335
run: npm run build
3436
- name: test

0 commit comments

Comments
 (0)