Skip to content

Commit

Permalink
Remove headless test runs from CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
mantoni committed Dec 14, 2017
1 parent 07db0f4 commit c1fd210
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c1fd210

Please sign in to comment.