hedgedoc/.travis.yml

28 lines
393 B
YAML
Raw Normal View History

2017-02-15 05:14:58 -05:00
language: node_js
dist: xenial
cache: yarn
2017-09-27 10:26:03 -04: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 15:01:36 -04:00
jobs:
include:
- stage: Static Tests
name: eslint
script:
- yarn run lint
- name: ShellCheck
script:
- shellcheck bin/heroku bin/setup
language: generic