From a5a6f0695c311f4a92bd4e6c464f5265aa79c749 Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Fri, 19 Jan 2018 16:44:42 -0500 Subject: [PATCH] Stop running PhantomJS and build assets --- bin/codeship_setup | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/bin/codeship_setup b/bin/codeship_setup index 1d7cd56..549828b 100755 --- a/bin/codeship_setup +++ b/bin/codeship_setup @@ -24,10 +24,8 @@ echo "Creating and migrating database" mix ecto.create mix ecto.migrate -echo "Running PhantomJS" -phantomjs --webdriver=0.0.0.0:8910 2>/dev/null & - -echo "Installing NPM assets" +echo "Building assets" cd assets npm install +npm run build cd ..