mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
Use matrix(jobs) in .travis.yml
This commit is contained in:
parent
abbc43f9b6
commit
cae9bb2e7d
1 changed files with 17 additions and 8 deletions
25
.travis.yml
25
.travis.yml
|
@ -1,12 +1,21 @@
|
||||||
language: node_js
|
language: node_js
|
||||||
dist: trusty
|
dist: trusty
|
||||||
node_js:
|
|
||||||
- 6
|
|
||||||
- 7
|
|
||||||
env:
|
|
||||||
- CXX=g++-4.8
|
|
||||||
cache: yarn
|
cache: yarn
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
- CXX=g++-4.8
|
||||||
|
|
||||||
before_install:
|
jobs:
|
||||||
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.1.0
|
include:
|
||||||
- export PATH="$HOME/.yarn/bin:$PATH"
|
- env: task=npm-test
|
||||||
|
node_js:
|
||||||
|
- 6
|
||||||
|
before_install:
|
||||||
|
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.1.0
|
||||||
|
- export PATH="$HOME/.yarn/bin:$PATH"
|
||||||
|
- env: task=npm-test
|
||||||
|
node_js:
|
||||||
|
- 7
|
||||||
|
before_install:
|
||||||
|
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.1.0
|
||||||
|
- export PATH="$HOME/.yarn/bin:$PATH"
|
||||||
|
|
Loading…
Reference in a new issue