hedgedoc/.travis.yml
David Mehren f2de18179e
CI: Add Node 14 to node versions list
This also removes the explicit node version in the eslint stage. Now the first version from the global list is automatically used.

Signed-off-by: David Mehren <git@herrmehren.de>
2020-08-25 21:04:59 +02:00

27 lines
393 B
YAML

language: node_js
dist: xenial
cache: yarn
stages:
- Static Tests
- test
node_js:
- 10
- 12
- 14
env:
- TEST_SUITE=test
- TEST_SUITE=test:e2e
script: "yarn run $TEST_SUITE"
jobs:
include:
- stage: Static Tests
name: eslint
script:
- yarn run lint
- name: ShellCheck
script:
- shellcheck bin/heroku bin/setup
language: generic