Skip to content

Commit 3e37ea9

Browse files
authored
CI: Check types in lint_web (#830)
1 parent 8160618 commit 3e37ea9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,15 @@ jobs:
2121
steps:
2222
- name: Check out repository
2323
uses: actions/checkout@v3
24-
- name: Install dev dependencies
24+
- name: Install dependencies
2525
working-directory: mwdb/web
26-
run: npm install --only dev
26+
run: npm install
2727
- name: Check if code was prettified
2828
working-directory: mwdb/web
2929
run: npx prettier --check src
30+
- name: Check types
31+
working-directory: mwdb/web
32+
run: npx tsc
3033
build_core:
3134
needs: [lint_core]
3235
name: Build mwdb-core core image

0 commit comments

Comments
 (0)