From e1481f2947ba6c9890bd100d9f862f0188bd9750 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 18 Aug 2021 17:46:37 +0200 Subject: [PATCH] run typescript checks in ci --- .github/workflows/codechecks.js.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codechecks.js.yml b/.github/workflows/codechecks.js.yml index 2e15c8e7..733e8b55 100644 --- a/.github/workflows/codechecks.js.yml +++ b/.github/workflows/codechecks.js.yml @@ -42,4 +42,8 @@ jobs: - name: Unit tests run: yarn test - name: Lint - run: yarn run lint-ci \ No newline at end of file + run: yarn run lint-ci + - name: Typescript + run: yarn run tsc + - name: Typescript lint + run: yarn run lint-ts