From c5609bc58241ed07017032a3d2a0a2928053a5f6 Mon Sep 17 00:00:00 2001 From: Rick Carlino Date: Sun, 14 Oct 2018 16:24:06 -0500 Subject: [PATCH] Boop --- .circleci/config.yml | 8 ++++++-- run_js_build.sh | 8 -------- 2 files changed, 6 insertions(+), 10 deletions(-) delete mode 100644 run_js_build.sh diff --git a/.circleci/config.yml b/.circleci/config.yml index 801f8e64d..e28a46417 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,5 +19,9 @@ jobs: - run: name: Run Rails and JS tests command: | - sudo docker-compose run web rspec spec - sudo docker-compose run webpack sh run_js_build.sh + sudo docker-compose run web rspec spec + sudo docker-compose run webpack npm run tslint + sudo docker-compose run webpack npm run sass-lint + sudo docker-compose run webpack npm run typecheck + sudo docker-compose run webpack npm run test-slow + sudo docker-compose run webpack npm run coverage diff --git a/run_js_build.sh b/run_js_build.sh deleted file mode 100644 index 6ead319fe..000000000 --- a/run_js_build.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -# Avoid the Docker setup/teardown cost by running all build tasks in one file. -npm run tslint -npm run sass-lint -npm run typecheck -npm run test-slow -npm run coverage