From 4d3905c3307cfdb176d55b31a2a8c755b9986d0f Mon Sep 17 00:00:00 2001 From: Tim De Pauw Date: Sun, 17 Dec 2017 12:40:04 +0100 Subject: [PATCH] Lint on Node 8 --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 5343d71..f4ac868 100644 --- a/circle.yml +++ b/circle.yml @@ -10,6 +10,6 @@ test: pre: - mkdir -p $CIRCLE_TEST_REPORTS/unit override: - - yarn run test:lint + - nvm use 8 && yarn run test:lint - nvm use 6 && MOCHA_FILE=$CIRCLE_TEST_REPORTS/unit/node6.xml yarn run test:ci:unit - nvm use 8 && MOCHA_FILE=$CIRCLE_TEST_REPORTS/unit/node8.xml yarn run test:ci