17 lines
247 B
YAML
17 lines
247 B
YAML
language: node_js
|
|
cache:
|
|
directories:
|
|
- $HOME/.npm
|
|
- $HOME/.yarn-cache
|
|
- node_modules
|
|
node_js:
|
|
- "8"
|
|
- "10"
|
|
before_install:
|
|
- npm i -g yarn --cache-min 999999999
|
|
install:
|
|
- yarn
|
|
notifications:
|
|
email: false
|
|
git:
|
|
depth: 5 |