From c6180aff7e3f57a7b85cfa085e38d38ba0eacb2e Mon Sep 17 00:00:00 2001 From: pimlie Date: Sun, 9 Jun 2019 16:07:52 +0200 Subject: [PATCH] test: add type tests to circleci --- .circleci/config.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e350458..49d52e3 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ executors: environment: NODE_ENV: test -commands: +commands: attach-project: steps: - checkout @@ -62,6 +62,14 @@ jobs: name: Unit Tests command: yarn test:unit --coverage && yarn coverage + test-types: + executor: node + steps: + - attach-project + - run: + name: Type Tests + command: yarn test:types + test-e2e-ssr: executor: node steps: @@ -98,6 +106,7 @@ workflows: - lint: { requires: [setup] } - audit: { requires: [setup] } - test-unit: { requires: [lint] } + - test-types: { requires: [lint] } - test-e2e-ssr: { requires: [lint] } - test-e2e-browser: name: test-e2e-firefox @@ -125,5 +134,5 @@ workflows: requires: [test-e2e-ssr] filters: branches: { ignore: /^pull\/.*/ } - +