From 1122e71a52b0f805fad860223cce99a97bd7c0f8 Mon Sep 17 00:00:00 2001 From: Brian Donovan Date: Fri, 22 Dec 2017 08:34:46 -0800 Subject: [PATCH] Print version information earlier. Since `install` runs the tests, we need to print the node and npm versions before installing in case the tests fail. --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 971bdc1..06cf692 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,9 +7,9 @@ build: off deploy: off install: + - node --version + - npm --version - npm install test_script: - - node --version - - npm --version - npm test