30 строки
610 B
YAML
30 строки
610 B
YAML
sudo: false
|
|
language: node_js
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
notifications:
|
|
email: false
|
|
slack:
|
|
on_success: never
|
|
secure: QFMZSJNCI5H5xzoIcDbJfzgR9AH7FuBD4tOyqRr/FMfEm1mV5eInvgUSmz0xFN3TpDMwJXKi41mrquK6/ey3DEgI0Jm5M32FTis+HahXp3R6zamD7+6Y0WaTxhILcULPqJVo2Ce4WtMqbmrEyk2xLFSYPhFt9wPna9aFO4j+OZw=
|
|
node_js:
|
|
- '4'
|
|
env:
|
|
- CXX=g++-4.8
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
before_install:
|
|
- npm i -g npm@^3.8.0
|
|
before_script:
|
|
- npm prune
|
|
after_success:
|
|
- npm run semantic-release
|
|
branches:
|
|
except:
|
|
- "/^v\\d+\\.\\d+\\.\\d+$/"
|