mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
21 lines
290 B
YAML
21 lines
290 B
YAML
language: node_js
|
|
node_js:
|
|
- "8"
|
|
- "7"
|
|
- "6"
|
|
- "5.1"
|
|
before_script:
|
|
- npm install grunt-cli -g
|
|
- "export DISPLAY=:99.0"
|
|
- "sh -e /etc/init.d/xvfb start"
|
|
- sleep 5
|
|
script:
|
|
- grunt
|
|
- npm run test:unit
|
|
- npm run test:e2e
|
|
after_script:
|
|
- npm list
|
|
cache:
|
|
directories:
|
|
- node_modules
|