mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
94058ef0a0
Signed-off-by: oupala <oupala@users.noreply.github.com>
40 lines
745 B
YAML
40 lines
745 B
YAML
language: node_js
|
|
dist: xenial
|
|
cache: yarn
|
|
|
|
jobs:
|
|
include:
|
|
- stage: Static Tests
|
|
name: eslint
|
|
node_js:
|
|
- 10
|
|
script:
|
|
- yarn run eslint
|
|
- name: markdownlint
|
|
node_js:
|
|
- 10
|
|
script:
|
|
- yarn run markdownlint
|
|
- name: ShellCheck
|
|
script:
|
|
- shellcheck bin/heroku bin/setup
|
|
language: generic
|
|
- name: json-lint
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- jq
|
|
script:
|
|
- yarn run jsonlint
|
|
language: generic
|
|
- stage: Dynamic Tests
|
|
name: Node.js 10
|
|
node_js:
|
|
- 10
|
|
script:
|
|
- yarn run mocha-suite
|
|
- name: Node.js 12
|
|
node_js:
|
|
- 12
|
|
script:
|
|
- yarn run mocha-suite
|