Update node tests to match versions actually installed

pull/401/head
Tim Head 2018-09-15 08:25:31 +02:00
rodzic 535e77a1d6
commit 07b1b82f27
2 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -1 +1 @@
Test that node 10 is installed and runnable.
Test that node 10 and npm 6 are installed and runnable.

Wyświetl plik

@ -2,6 +2,9 @@
set -e
which node
node --version
node --version | grep v10
which npm
npm --version | grep 6.2
npm --version
npm --version | grep 6.4