We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1836b3 commit 3d48eb6Copy full SHA for 3d48eb6
.travis.yml
@@ -4,18 +4,31 @@ node_js:
4
- "lts/carbon"
5
- "lts/dubnium"
6
- "11"
7
+ - "12"
8
9
dist: xenial
10
cache: yarn
11
-script: yarn test:ci
12
+matrix:
13
+ fast_finish: true
14
+ include:
15
+ - node_js: lts/carbon
16
+ - node_js: lts/dubnium
17
+ allow_failures:
18
+ - node_js: "11"
19
+ - node_js: "12"
20
21
jobs:
22
include:
23
+ - stage: test
24
+ script: yarn test:ci
25
+ - stage: build-frontend
26
+ script: yarn build
27
- stage: doctoc-check
28
install: npm install -g doctoc
29
if: type = pull_request OR branch = master
30
script:
31
- cp README.md README.md.orig
32
- npm run doctoc
33
- diff -q README.md README.md.orig
34
+ node_js: lts/carbon
0 commit comments