Add typecheck to pipelines
This commit is contained in:
parent
788f6cf663
commit
a71e770496
|
|
@ -54,6 +54,7 @@ pipelines:
|
|||
- npm install
|
||||
- npm run prettier:check
|
||||
- npm run lint
|
||||
- npm run typecheck
|
||||
- step:
|
||||
name: cypress tests
|
||||
max-time: 45
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@ set -e
|
|||
echo 'prettier:check'
|
||||
(cd client && npm run prettier:check)
|
||||
|
||||
echo 'lint'
|
||||
(cd client && npm run lint)
|
||||
echo 'lint and typecheck'
|
||||
(cd client && npm run lint && npm run typecheck)
|
||||
|
||||
echo 'python ufmt check'
|
||||
ufmt check server
|
||||
|
|
|
|||
Loading…
Reference in New Issue