From 32a0505866f7d26affa5b74c3687878047f7b893 Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 25 Jul 2018 13:18:30 +0200 Subject: [PATCH] add remix-analyzer circle ci --- .circleci/config.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 53cd0cb0dd..80a081378f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,6 +33,16 @@ jobs: - checkout - run: npm install && npm run bootstrap - run: cd remix-debug && npm test + + remix-analyzer: + docker: + - image: circleci/node:7.10 + environment: + working_directory: ~/repo + steps: + - checkout + - run: npm install && npm run bootstrap + - run: cd remix-analyzer && npm test workflows: version: 2 @@ -41,4 +51,5 @@ workflows: - remix-lib - remix-solidity - remix-debug + - remix-analyzer