From a213fac7a39b65cf142db8f2ca0fa897280f40d8 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Tue, 17 Aug 2021 17:02:19 +0200 Subject: [PATCH] ci: adapt script --- .github/workflows/test.yml | 2 ++ package.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 617ad7ec..f529f076 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,6 +20,8 @@ jobs: - run: yarn install --frozen-lockfile - run: yarn lerna bootstrap - run: yarn run lint + - run: yarn run test:types - run: yarn run test:jest - run: yarn run build + - run: yarn run test:dts - run: yarn codecov diff --git a/package.json b/package.json index d3472e66..0e75ca55 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,8 @@ "lint:fix": "yarn run lint --write", "test": "lerna run test && yarn run test:jest", "test:jest": "jest --coverage", + "test:types": "lerna run test:types", + "test:dts": "lerna run test:dts", "docs:api": "typedoc TODO:" }, "devDependencies": { -- 2.47.3