Masuksini-Real-Estate/public/assets/admin/.travis.yml

22 lines
282 B
YAML
Raw Normal View History

2024-09-07 01:16:49 +00:00
language: node_js
node_js:
- 8
- 10
- 11
- 12
env:
- INSTALL=yarn
- INSTALL=npm
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'