add travis
This commit is contained in:
parent
7391df8e84
commit
81cc5a8323
1 changed files with 37 additions and 0 deletions
37
.travis.yml
Normal file
37
.travis.yml
Normal file
|
@ -0,0 +1,37 @@
|
|||
sudo: true
|
||||
dist: xenial
|
||||
#addons:
|
||||
# apt:
|
||||
# sources:
|
||||
# - mysql-5.7-trusty
|
||||
# packages:
|
||||
# - mysql-server
|
||||
# - mysql-client
|
||||
language: node_js
|
||||
node_js:
|
||||
- "lts/*"
|
||||
cache:
|
||||
directories:
|
||||
- "node_modules"
|
||||
#services:
|
||||
# - mysql
|
||||
|
||||
before_install:
|
||||
# - sudo mysql -e "use mysql; update user set authentication_string=PASSWORD('password') where User='root'; update user set plugin='mysql_native_password';FLUSH PRIVILEGES;"
|
||||
# - sudo mysql_upgrade -u root -ppassword
|
||||
# - sudo service mysql restart
|
||||
# - mysql -u root -ppassword -e 'CREATE DATABASE IF NOT EXISTS lbry;'
|
||||
# - mysql -u root -ppassword -e "CREATE USER 'lbry'@'localhost' IDENTIFIED BY 'lbry';"
|
||||
# - mysql -u root -ppassword -e "GRANT ALL ON lbry.* TO 'lbry'@'localhost';"
|
||||
# - sudo service mysql restart
|
||||
- dpkg --compare-versions `npm -v` ge 6.4.0 || npm i -g npm@^6.4.0
|
||||
|
||||
install:
|
||||
- npm i
|
||||
|
||||
script:
|
||||
- npm run fix
|
||||
- npm run build
|
||||
- git diff --exit-code
|
||||
|
||||
|
Loading…
Reference in a new issue