From f19eb28477e63e46bdf53812892e89640baa893b Mon Sep 17 00:00:00 2001 From: Alexandru Dima Date: Mon, 28 Dec 2020 18:01:42 +0100 Subject: [PATCH] Avoid installing typescript --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c431549693..666f9f6c84d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -285,7 +285,6 @@ jobs: working-directory: ./typings-test run: | yarn init -yp - yarn add typescript - yarn tsc --init + ../node_modules/.bin/tsc --init echo "import '../out-monaco-editor-core';" > a.ts - yarn tsc --noEmit + ../node_modules/.bin/tsc --noEmit -- GitLab