2022-12-13 22:32:28 +00:00
|
|
|
pipeline:
|
|
|
|
migrate:
|
|
|
|
image: node:19.2.0
|
|
|
|
commands:
|
|
|
|
- cp .config/ci.yml .config/default.yml
|
|
|
|
- corepack enable
|
2022-12-18 18:51:24 +00:00
|
|
|
- yarn set version berry
|
2022-12-13 22:32:28 +00:00
|
|
|
- yarn install
|
2022-12-16 01:09:22 +00:00
|
|
|
- yarn build
|
2022-12-13 22:32:28 +00:00
|
|
|
- yarn migrate
|
2022-12-13 22:37:24 +00:00
|
|
|
environment:
|
|
|
|
- YARN_ENABLE_IMMUTABLE_INSTALLS=false
|
2022-12-13 22:32:28 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
database:
|
|
|
|
image: postgres:${DATABASE}
|
|
|
|
environment:
|
|
|
|
- POSTGRES_PASSWORD=test
|
2022-12-13 23:11:09 +00:00
|
|
|
redis:
|
|
|
|
image: redis
|
2022-12-13 22:32:28 +00:00
|
|
|
|
2022-12-16 00:33:09 +00:00
|
|
|
matrix:
|
|
|
|
DATABASE:
|
|
|
|
- 12
|
|
|
|
- latest
|
|
|
|
|
2022-12-13 22:32:28 +00:00
|
|
|
branches:
|
2022-12-18 18:41:11 +00:00
|
|
|
include: [ main, develop, feature/* ]
|