Remove unnecessary build step

pull/9/head
ioedeveloper 4 years ago
parent 9397e2ff5d
commit 768204d06e
  1. 10
      .circleci/config.yml
  2. 2
      workspace.json

@ -24,7 +24,7 @@ jobs:
steps: steps:
- checkout - checkout
- run: npm install - run: npm install
- run: npm run lint && npm run test && npm run make-mock-compiler - run: npm run lint && npm run test
- run: - run:
name: Download Compatible JAVA Version for Selenium name: Download Compatible JAVA Version for Selenium
command: | command: |
@ -66,7 +66,7 @@ jobs:
steps: steps:
- checkout - checkout
- run: npm install - run: npm install
- run: npm run lint && npm run test && npm run make-mock-compiler - run: npm run lint && npm run test
- run: - run:
name: Download Selenium name: Download Selenium
command: ./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide/seleniumConfig.js command: ./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide/seleniumConfig.js
@ -105,7 +105,7 @@ jobs:
steps: steps:
- checkout - checkout
- run: npm install - run: npm install
- run: npm run lint && npm run test && npm run make-mock-compiler - run: npm run lint && npm run test
- run: - run:
name: Download Selenium name: Download Selenium
command: ./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide/seleniumConfig.js command: ./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide/seleniumConfig.js
@ -137,7 +137,7 @@ jobs:
steps: steps:
- checkout - checkout
- run: npm install - run: npm install
- run: npm run lint && npm run test && npm run make-mock-compiler - run: npm run lint && npm run test
- run: - run:
name: Deploy name: Deploy
command: | command: |
@ -166,7 +166,7 @@ jobs:
steps: steps:
- checkout - checkout
- run: npm install - run: npm install
- run: npm run lint && npm run test && npm run make-mock-compiler - run: npm run lint && npm run test
- run: - run:
name: Deploy name: Deploy
command: | command: |

@ -82,7 +82,7 @@
"options": { "options": {
"commands": [ "commands": [
{ {
"command": "csslint" "command": "csslint && node apps/remix-ide/test/index.js"
} }
] ]
} }

Loading…
Cancel
Save