HackMD/.travis.yml

51 lines
1.2 KiB
YAML
Raw Normal View History

2017-02-15 10:14:58 +00:00
language: node_js
dist: xenial
cache: yarn
2017-10-27 19:01:36 +00:00
env:
global:
- CXX=g++-4.8
- YARN_VERSION=1.16.0
2017-09-27 14:26:03 +00:00
2017-10-27 19:01:36 +00:00
jobs:
include:
- name: Node.js 8
2017-10-27 19:01:36 +00:00
node_js:
- 8
2017-10-27 19:01:36 +00:00
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
2017-10-27 19:01:36 +00:00
- export PATH="$HOME/.yarn/bin:$PATH"
script:
- yarn run mocha-suite
- name: Node.js 10
2017-10-27 19:01:36 +00:00
node_js:
- 10
2017-10-27 19:01:36 +00:00
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
2017-10-27 19:01:36 +00:00
- 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:
- yarn run eslint
language: generic
- name: ShellCheck
script:
- shellcheck bin/heroku bin/setup
language: generic
- name: json-lint
addons:
apt:
packages:
- jq
script:
- yarn run jsonlint
language: generic