Add typecheck to pipelines

This commit is contained in:
Daniel Egger 2022-10-21 16:58:25 +02:00
parent 788f6cf663
commit a71e770496
2 changed files with 3 additions and 2 deletions

View File

@ -54,6 +54,7 @@ pipelines:
- npm install - npm install
- npm run prettier:check - npm run prettier:check
- npm run lint - npm run lint
- npm run typecheck
- step: - step:
name: cypress tests name: cypress tests
max-time: 45 max-time: 45

View File

@ -6,8 +6,8 @@ set -e
echo 'prettier:check' echo 'prettier:check'
(cd client && npm run prettier:check) (cd client && npm run prettier:check)
echo 'lint' echo 'lint and typecheck'
(cd client && npm run lint) (cd client && npm run lint && npm run typecheck)
echo 'python ufmt check' echo 'python ufmt check'
ufmt check server ufmt check server