1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-11-21 17:56:45 +02:00
pigallery2/.travis.yml
2022-03-30 22:18:02 +02:00

19 lines
470 B
YAML

dist: xenial
language: node_js
node_js:
- '16'
env:
- PORT=35000 MYSQL_HOST='localhost' MYSQL_PASSWORD='' MYSQL_USERNAME='root' MYSQL_DATABASE='pigallery2_test'
services:
- mysql
addons:
chrome: stable
before_install:
- # start your web application and listen on `localhost`
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
install:
- npm ci
- npm run build
- npm run lint
after_success: npm run coverage