Validate typings can be imported correctly in simple ts project (#1785)

pull/1807/head
Peng Lyu 2020-01-27 11:30:09 -08:00 committed by GitHub
parent 45f731f75a
commit d7ddf03fde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -23,6 +23,17 @@ jobs:
run: |
yarn
yarn gulp editor-distro
- 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 '../vscode/out-monaco-editor-core';" > a.ts
yarn tsc --noEmit
- name: NPM Install
run: npm install
- name: Webpack Bundle