From 1889e7c2d2cce7ccbe1ded5aae8747d2e960945a Mon Sep 17 00:00:00 2001 From: 0mkar <0mkar@protonmail.com> Date: Wed, 5 Dec 2018 14:00:34 +0530 Subject: [PATCH] add circleci config --- .circleci/config.yml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 32605b7d2b..4e83ea9a3d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,7 +23,7 @@ jobs: - checkout - run: npm install && npm run bootstrap - run: cd remix-debug && npm test - + remix-analyzer: docker: - image: circleci/node:10 @@ -33,7 +33,7 @@ jobs: - checkout - run: npm install && npm run bootstrap - run: cd remix-analyzer && npm test - + remix-tests: docker: - image: circleci/node:10 @@ -43,7 +43,7 @@ jobs: - checkout - run: npm install && npm run bootstrap - run: cd remix-tests && npm test - + remix-simulator: docker: - image: circleci/node:10 @@ -53,7 +53,17 @@ jobs: - checkout - run: npm install && npm run bootstrap - run: cd remix-simulator && npm test - + + remix-resolve: + docker: + - image: circleci/node:10 + environment: + working_directory: ~/repo + steps: + - checkout + - run: npm install && npm run bootstrap + - run: cd remix-resolve && npm test + workflows: version: 2 @@ -64,3 +74,4 @@ workflows: - remix-analyzer - remix-tests - remix-simulator + - remix-resolve