From c1fd210d32b88e1373b2ab55aecf5138a1ddb542 Mon Sep 17 00:00:00 2001 From: Maximilian Antoni Date: Thu, 14 Dec 2017 20:47:23 +0100 Subject: [PATCH] Remove headless test runs from CircleCI --- .circleci/config.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cca550549..1154d4230 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,22 +18,17 @@ jobs: name: Install dependencies command: | npm config set strict-ssl false - NODE_VERSION=$(node --version) - if [[ ${NODE_VERSION:0:3} != "v6." ]]; then - # Avoid downloading chromium unnecessarily - npm config set ignore-scripts true - fi + # Avoid downloading chromium unnecessarily + npm config set ignore-scripts true npm install npm config set ignore-scripts false - run: name: Pre-Test - # ESLint only supports Node >=4 and Mochify requires Node >= 6 + # ESLint only supports Node >=4 command: | NODE_VERSION=$(node --version) if [[ ${NODE_VERSION:0:3} == "v6." ]]; then npm run lint; - npm run test-headless; - npm run test-webworker; fi - run: name: Test