From 543f3b5d784852e7aeaf7e527630e966795973ca Mon Sep 17 00:00:00 2001 From: Maxence Leblanc <32215310+mlbnc@users.noreply.github.com> Date: Wed, 6 Apr 2022 17:48:13 +0200 Subject: [PATCH] ci(config): add test step --- .circleci/config.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1b144ef..b1a45c6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,6 +26,16 @@ jobs: paths: - node_modules + test: + executor: node + steps: + - checkout + - attach_workspace: + at: '.' + - run: + name: Run local rules tests + command: npm run test + tag_and_release: executor: node steps: @@ -47,6 +57,10 @@ workflows: only: - master + - test: + name: test + context: GLOBAL_ORG + - tag_and_release: name: tag_and_release context: GLOBAL_ORG