Add typings validation

This commit is contained in:
Alexandru Dima 2020-12-28 17:52:14 +01:00
parent 4df5991023
commit 802a36b097
No known key found for this signature in database
GPG key ID: 6E58D7B045760DA0

View file

@ -276,3 +276,16 @@ jobs:
- name: Editor Distro & ESM Bundle
run: yarn gulp editor-esm-bundle
- name: Typings validation prep
run: |
mkdir typings-test
- name: Typings validation
working-directory: ./typings-test
run: |
yarn init -yp
yarn add typescript
yarn tsc --init
echo "import '../out-monaco-editor-core';" > a.ts
yarn tsc --noEmit