iceshrimp-legacy/.woodpecker/commitDatabase.yml
2022-12-28 02:11:16 +01:00

27 lines
455 B
YAML

pipeline:
migrate:
image: node:latest
commands:
- cp .config/ci.yml .config/default.yml
- corepack enable
- yarn set version berry
- yarn install --immutable
- yarn build
- yarn migrate
services:
database:
image: postgres:${DATABASE}
environment:
- POSTGRES_PASSWORD=test
redis:
image: redis
matrix:
DATABASE:
- 12
- latest
branches:
include: [ main, develop, feature/* ]