From 69125a052fdcf559e39cc98159984f7a49ffa0a9 Mon Sep 17 00:00:00 2001 From: nitrohorse <1514352+nitrohorse@users.noreply.github.com> Date: Sat, 3 Aug 2019 14:24:51 -0700 Subject: [PATCH] Test Travis matrix config --- .travis.yml | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index e69de1c9..b1d61839 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,22 @@ -language: ruby -rvm: - - 2.4.1 +matrix: + include: + - language: ruby + rvm: + - 2.4.1 -# Assume bundler is being used, therefore -# the `install` step will run `bundle install` by default. -script: ./build.sh + # Assume bundler is being used, therefore + # the `install` step will run `bundle install` by default. + script: ./build.sh -sudo: false # route your build to the container-based infrastructure for a faster build + sudo: false # route your build to the container-based infrastructure for a faster build -cache: bundler # caching bundler gem packages will speed up build + cache: bundler # caching bundler gem packages will speed up build + + - language: node_js + node_js: + - "v12.7.0" + branches: + only: + - master + script: + - "npm run html-beautify" \ No newline at end of file