Add typecheck to pipelines
This commit is contained in:
parent
788f6cf663
commit
a71e770496
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue