mirror of
https://github.com/microsoft/TypeScript-Node-Starter.git
synced 2025-11-08 14:47:28 +00:00
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!
15 lines
188 B
YAML
15 lines
188 B
YAML
sudo: false
|
|
language: node_js
|
|
node_js:
|
|
- "8"
|
|
- "9"
|
|
- "10"
|
|
services:
|
|
- mongodb
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
script:
|
|
- npm run build
|
|
- npm run test
|