23 lines
308 B
YAML
23 lines
308 B
YAML
|
language: node_js
|
||
|
os:
|
||
|
- linux
|
||
|
cache:
|
||
|
yarn: true
|
||
|
directories:
|
||
|
- ~/.npm
|
||
|
notifications:
|
||
|
email: false
|
||
|
node_js:
|
||
|
- '8'
|
||
|
script:
|
||
|
- npm run test
|
||
|
- npm run build
|
||
|
matrix:
|
||
|
allow_failures: []
|
||
|
fast_finish: true
|
||
|
after_success:
|
||
|
- npm run semantic-release
|
||
|
branches:
|
||
|
except:
|
||
|
- /^v\d+\.\d+\.\d+$/
|