aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-10-01 22:43:36 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-10-02 21:09:24 +0800
commit9e3d1cd63d1ed521496118f90b79515c723bd5a0 (patch)
tree16f138b9b35a2543bfdac11cb036256d98ac5b3c /.circleci
parentf4e4eef48e703afb923ba4f969fc77f32be81745 (diff)
downloaddexon-sol-tools-9e3d1cd63d1ed521496118f90b79515c723bd5a0.tar
dexon-sol-tools-9e3d1cd63d1ed521496118f90b79515c723bd5a0.tar.gz
dexon-sol-tools-9e3d1cd63d1ed521496118f90b79515c723bd5a0.tar.bz2
dexon-sol-tools-9e3d1cd63d1ed521496118f90b79515c723bd5a0.tar.lz
dexon-sol-tools-9e3d1cd63d1ed521496118f90b79515c723bd5a0.tar.xz
dexon-sol-tools-9e3d1cd63d1ed521496118f90b79515c723bd5a0.tar.zst
dexon-sol-tools-9e3d1cd63d1ed521496118f90b79515c723bd5a0.zip
Move bundle-size out of static tests and don't wait for a build with static tests
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml14
1 files changed, 11 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 6c1525101..f83fdf3f0 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -174,11 +174,18 @@ jobs:
docker:
- image: circleci/node:9
steps:
+ - checkout
+ - run: yarn prettier:ci
+ - run: yarn lerna run lint
+ bundle-size:
+ docker:
+ - image: circleci/node:9
+ working_directory: ~/repo
+ steps:
- restore_cache:
keys:
- repo-{{ .Environment.CIRCLE_SHA1 }}
- - run: yarn prettier:ci
- - run: yarn lerna run lint
+ - run: cd packages/0x.js && yarn build:umd:prod
- run: yarn bundlesize
submit-coverage:
docker:
@@ -254,7 +261,8 @@ workflows:
- test-rest:
requires:
- build
- - static-tests:
+ - static-tests
+ - bundle-size:
requires:
- build
- test-publish: