From 1b1fa93cb33b623369471784a2d9222e76051e3b Mon Sep 17 00:00:00 2001 From: Peter Blazejewicz Date: Fri, 5 Jul 2019 22:27:00 +0200 Subject: [PATCH] Specify NodeJS version as strings in Travis configuration This fixes the YAML related extensions errors in VSCode, as the schema for .travis.yml requires a quoted strings here: https://docs.travis-ci.com/user/languages/javascript-with-nodejs/#specifying-nodejs-versions Thanks! --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d28133b..49d7e76 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,9 @@ sudo: false language: node_js node_js: - - 8 - - 9 - - 10 + - "8" + - "9" + - "10" services: - mongodb cache: