32 строки
509 B
YAML
32 строки
509 B
YAML
language: node_js
|
|
|
|
# workaround for obsolete `temp` module 0.6
|
|
env:
|
|
global:
|
|
- TMPDIR=/tmp
|
|
|
|
node_js: "10"
|
|
|
|
sudo: false
|
|
|
|
services:
|
|
- memcached
|
|
|
|
notifications:
|
|
email:
|
|
jrgm@mozilla.com
|
|
irc:
|
|
channels:
|
|
- "irc.mozilla.org#fxa-bots"
|
|
use_notice: false
|
|
skip_join: false
|
|
|
|
before_install:
|
|
- npm config set spin false
|
|
|
|
script:
|
|
- npm run-script lint:deps
|
|
- npm run outdated
|
|
- node_modules/.bin/grunt lint copyright || exit 1
|
|
- node_modules/.bin/tap -R spec test/local test/remote
|