hedgedoc/.travis.yml

28 lines
393 B
YAML
Raw Normal View History

2017-02-15 10:14:58 +00:00
language: node_js
dist: xenial
cache: yarn
2017-09-27 14:26:03 +00:00
stages:
- Static Tests
- test
node_js:
- 10
- 12
- 14
env:
- TEST_SUITE=test
- TEST_SUITE=test:e2e
script: "yarn run $TEST_SUITE"
2017-10-27 19:01:36 +00:00
jobs:
include:
- stage: Static Tests
name: eslint
script:
- yarn run lint
- name: ShellCheck
script:
- shellcheck bin/heroku bin/setup
language: generic