From 3d48eb67fb3de6ddceffa23551467b0003362f94 Mon Sep 17 00:00:00 2001 From: BoHong Li Date: Mon, 27 May 2019 18:29:30 +0800 Subject: [PATCH] ci: update Signed-off-by: BoHong Li --- .travis.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9edbc513..1ca8674e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,14 +4,26 @@ node_js: - "lts/carbon" - "lts/dubnium" - "11" + - "12" dist: xenial cache: yarn -script: yarn test:ci +matrix: + fast_finish: true + include: + - node_js: lts/carbon + - node_js: lts/dubnium + allow_failures: + - node_js: "11" + - node_js: "12" jobs: include: + - stage: test + script: yarn test:ci + - stage: build-frontend + script: yarn build - stage: doctoc-check install: npm install -g doctoc if: type = pull_request OR branch = master @@ -19,3 +31,4 @@ jobs: - cp README.md README.md.orig - npm run doctoc - diff -q README.md README.md.orig + node_js: lts/carbon