travis config is now in stages

Signed-off-by: Claudius <opensource@amenthes.de>
This commit is contained in:
Claudius 2019-05-13 14:05:02 +02:00
parent aa57b76a4f
commit 1da5a5bccc
1 changed files with 18 additions and 28 deletions

View File

@ -1,41 +1,15 @@
language: node_js language: node_js
dist: xenial dist: xenial
cache: yarn cache: yarn
env:
global:
- CXX=g++-4.8
- YARN_VERSION=1.16.0
jobs: jobs:
include: include:
- name: Node.js 8 - stage: Static Tests
node_js: name: eslint
- 8
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
- export PATH="$HOME/.yarn/bin:$PATH"
script:
- yarn run mocha-suite
- name: Node.js 10
node_js: node_js:
- 10 - 10
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
- export PATH="$HOME/.yarn/bin:$PATH"
script:
- yarn run mocha-suite
- name: Node.js 12
node_js:
- 12
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
- export PATH="$HOME/.yarn/bin:$PATH"
script:
- yarn run mocha-suite
- name: eslint
script: script:
- yarn run eslint - yarn run eslint
language: generic
- name: ShellCheck - name: ShellCheck
script: script:
- shellcheck bin/heroku bin/setup - shellcheck bin/heroku bin/setup
@ -48,3 +22,19 @@ jobs:
script: script:
- yarn run jsonlint - yarn run jsonlint
language: generic language: generic
- stage: Dynamic Tests
name: Node.js 8
node_js:
- 8
script:
- yarn run mocha-suite
- name: Node.js 10
node_js:
- 10
script:
- yarn run mocha-suite
- name: Node.js 12
node_js:
- 12
script:
- yarn run mocha-suite