enable remix-analyzer on circleci

pull/7/head
yann300 6 years ago
parent cc0028c103
commit c6bdc89d58
  1. 11
      .circleci/config.yml
  2. 3
      lerna.json
  3. 12
      remix-analyzer/package.json

@ -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

@ -4,7 +4,8 @@
"remix-debug",
"remix-debugger",
"remix-lib",
"remix-solidity"
"remix-solidity",
"remix-analyzer"
],
"version": "independent"
}

@ -21,7 +21,10 @@
"babel-eslint": "^7.1.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"remix-lib": "^0.2.9",
"babel-preset-es2015": "^6.24.0"
"babel-preset-es2015": "^6.24.0",
"solc": "^0.4.24",
"standard": "^7.0.1",
"tape": "^4.6.0"
},
"scripts": {
"test": "standard && tape ./test/tests.js"
@ -35,10 +38,5 @@
},
"author": "Remix Team",
"license": "MIT",
"homepage": "https://github.com/ethereum/remix#readme",
"devDependencies": {
"solc": "^0.4.24",
"standard": "^7.0.1",
"tape": "^4.6.0"
}
"homepage": "https://github.com/ethereum/remix#readme"
}

Loading…
Cancel
Save