1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00

setting min node version to 14

This commit is contained in:
Patrik J. Braun 2022-01-15 11:40:43 +01:00
parent abfe9018c5
commit 0efa75a0e1
3 changed files with 2 additions and 4 deletions

View File

@ -17,7 +17,7 @@ jobs:
strategy: strategy:
matrix: matrix:
node-version: [12.x, 13.x, 14.x] node-version: [14.x]
services: services:
mariadb: mariadb:

View File

@ -1,8 +1,6 @@
dist: xenial dist: xenial
language: node_js language: node_js
node_js: node_js:
- '12'
- '13'
- '14' - '14'
env: env:
- PORT=35000 MYSQL_HOST='localhost' MYSQL_PASSWORD='' MYSQL_USERNAME='root' MYSQL_DATABASE='pigallery2_test' - PORT=35000 MYSQL_HOST='localhost' MYSQL_PASSWORD='' MYSQL_USERNAME='root' MYSQL_DATABASE='pigallery2_test'

View File

@ -155,6 +155,6 @@
"mysql": "2.18.1" "mysql": "2.18.1"
}, },
"engines": { "engines": {
"node": ">=12.0 <15.0" "node": ">=14.0 <15.0"
} }
} }