From 1d8f15f373d6238527bf2c20b8b5cf852bbff5b3 Mon Sep 17 00:00:00 2001 From: Nik Butenko Date: Sun, 6 Aug 2017 15:36:44 +1000 Subject: [PATCH] Run pub before e2e --- .circleci/config.yml | 3 --- scripts/e2e.js | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 72c4742..aef1bdf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,9 +31,6 @@ jobs: - run: yarn test - - run: yarn pub - - - run: name: yarn e2e command: | diff --git a/scripts/e2e.js b/scripts/e2e.js index 8a532e3..753243a 100755 --- a/scripts/e2e.js +++ b/scripts/e2e.js @@ -101,4 +101,7 @@ const run = async ({cwd}) => { }; +require(`./pub`); + + run({cwd: CWD});