From fb4632422ed6c10352f4d17ad90ef41860617c0d Mon Sep 17 00:00:00 2001 From: yann300 Date: Mon, 10 Sep 2018 11:54:51 +0200 Subject: [PATCH] circle test --- .circleci/config.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 952e6547ac..ffed310012 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -43,6 +43,16 @@ jobs: - checkout - run: npm install && npm run bootstrap - run: cd remix-tests && npm test + + remix-simulator: + docker: + - image: circleci/node:9.11.2 + environment: + working_directory: ~/repo + steps: + - checkout + - run: npm install && npm run bootstrap + - run: cd remix-simulator && npm test workflows: @@ -53,3 +63,4 @@ workflows: - remix-debug - remix-analyzer - remix-tests + - remix-simulator