AdminLTE/.travis.yml
2019-10-31 12:47:10 +01:00

28 lines
343 B
YAML

language: node_js
node_js:
- 8
- 9
- 10
- 11
- 12
env:
- INSTALL=yarn
- INSTALL=npm
jobs:
exclude:
- node_js: 9
env: INSTALL=yarn
matrix:
fast_finish: true
install:
- if [ "yarn" == $INSTALL ]; then yarn install; fi
- if [ "npm" == $INSTALL ]; then npm install; fi
script:
- echo 'Tests must be configured'