26 lines
343 B
YAML
26 lines
343 B
YAML
language: node_js
|
|
node_js:
|
|
- 10
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libgconf-2-4
|
|
cache:
|
|
directories:
|
|
- ~/.npm
|
|
- ~/.cache
|
|
- node_modules
|
|
branches:
|
|
only:
|
|
- master
|
|
notifications:
|
|
email: false
|
|
install:
|
|
- npm install
|
|
script:
|
|
- npm run lint
|
|
- npm run build
|
|
- npm run test
|
|
after_success:
|
|
- npm run semantic-release
|