Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit 3943aff

Browse files
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!
1 parent 99ed257 commit 3943aff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- 8
5-
- 9
6-
- 10
4+
- "8"
5+
- "9"
6+
- "10"
77
services:
88
- mongodb
99
cache:

0 commit comments

Comments
 (0)