shlink-web-client/.travis.yml

23 lines
290 B
YAML
Raw Normal View History

2018-08-04 10:29:55 +02:00
language: node_js
node_js:
- "stable"
cache:
yarn: true
directories:
- node_modules
install:
- yarn install
script:
2018-08-24 12:02:28 +02:00
- yarn lint
- yarn test:ci
2018-08-04 10:29:55 +02:00
- yarn build # Make sure the app can be built without errors
2018-08-22 10:44:24 +02:00
after_script:
- yarn ocular coverage/clover.xml
2018-08-04 10:29:55 +02:00
sudo: false