From 65c3000178c59c98549475d729c8c873ac5b6ec7 Mon Sep 17 00:00:00 2001 From: Alexandre Neuwald CTW Date: Tue, 16 Apr 2024 10:13:39 +0100 Subject: [PATCH] remove improvement --- .github/workflows/ci.yml | 7 ++++++- package.json | 1 - 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08431a23e3..e42e71bf27 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,12 @@ jobs: command: | # lint steps set -x - yarn run test:lint + yarn license-check + yarn dedupe --check + yarn run tsc --noEmit # typecheck files that are not included by webpack or package builds + yarn run lint:ci + yarn run lint:unused-exports + yarn run lint:dependencies - name: packages command: yarn run build:packages - name: web diff --git a/package.json b/package.json index 619a764282..6b01307538 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,6 @@ "lint:unused-exports": "ts-node ./ci/lint-unused-exports.ts", "lint:dependencies": "ts-node ./ci/lint-dependencies.ts .", "test": "jest", - "test:lint": "yarn license-check && yarn dedupe --check && yarn run tsc --noEmit && yarn run lint:ci && yarn run lint:unused-exports && yarn run lint:dependencies ", "test:debug": "cross-env NODE_OPTIONS='--inspect-brk' jest", "test:watch": "jest --watch", "test:integration": "jest --forceExit --projects desktop/integration-test",