parent
daea355fa9
commit
fbe6ba648a
@ -0,0 +1,32 @@ |
||||
# Javascript Node CircleCI 2.0 configuration file |
||||
# |
||||
# Check https://circleci.com/docs/2.0/language-javascript/ for more details |
||||
# |
||||
version: 2 |
||||
jobs: |
||||
remixd: |
||||
docker: |
||||
# specify the version you desire here |
||||
- image: circleci/node:9.11.2 |
||||
|
||||
# Specify service dependencies here if necessary |
||||
# CircleCI maintains a library of pre-built images |
||||
# documented at https://circleci.com/docs/2.0/circleci-images/ |
||||
# - image: circleci/mongo:3.4.4 |
||||
environment: |
||||
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org" |
||||
- COMMIT_AUTHOR: "Circle CI" |
||||
- FILES_TO_PACKAGE: "package.json" |
||||
working_directory: ~/remixd |
||||
|
||||
steps: |
||||
- checkout |
||||
- run: npm install |
||||
- run: npm run lint |
||||
- run: npm run test |
||||
|
||||
workflows: |
||||
version: 2 |
||||
build_all: |
||||
jobs: |
||||
- remixd |
@ -0,0 +1,20 @@ |
||||
{ |
||||
"env": { |
||||
"browser": true, |
||||
"commonjs": true, |
||||
"es6": true |
||||
}, |
||||
"extends": [ |
||||
"standard" |
||||
], |
||||
"globals": { |
||||
"Atomics": "readonly", |
||||
"SharedArrayBuffer": "readonly" |
||||
}, |
||||
"parserOptions": { |
||||
"ecmaVersion": 2018 |
||||
}, |
||||
"rules": { |
||||
"standard/no-callback-literal": 0 |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue