2019-12-14 19:24:23 +08:00
|
|
|
dist: xenial
|
2016-03-13 23:03:07 +08:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
2022-01-14 23:47:22 +08:00
|
|
|
- '15'
|
2022-01-14 23:27:08 +08:00
|
|
|
- '16'
|
2019-01-28 04:10:01 +08:00
|
|
|
env:
|
2020-01-08 06:36:05 +08:00
|
|
|
- PORT=35000 MYSQL_HOST='localhost' MYSQL_PASSWORD='' MYSQL_USERNAME='root' MYSQL_DATABASE='pigallery2_test'
|
2019-01-28 03:36:42 +08:00
|
|
|
services:
|
|
|
|
- mysql
|
2018-03-31 03:30:30 +08:00
|
|
|
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 &
|
2019-12-14 19:24:23 +08:00
|
|
|
install:
|
2020-01-09 06:23:37 +08:00
|
|
|
- npm ci
|
2019-12-14 19:24:23 +08:00
|
|
|
- npm run build
|
2021-05-16 13:46:26 +08:00
|
|
|
- npm run lint
|
2020-01-09 06:23:37 +08:00
|
|
|
after_success: npm run coverage
|