Skip to content

Commit 347554a

Browse files
committed
cicd: Check all project types before building.
1 parent c82787d commit 347554a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/build.yml

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
- name: Use NPM 8
2323
run: npm i -g npm@8
2424
- run: npm ci
25+
- name: types
26+
run: npm run check:types
2527
- name: build
2628
run: npm run build
2729
- name: test

.github/workflows/release.yml

+2
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)