2022-12-13 15:32:28 -07:00
|
|
|
pipeline:
|
2023-01-11 11:42:04 -07:00
|
|
|
testCommit:
|
2023-05-01 13:09:21 -06:00
|
|
|
image: node:alpine
|
2022-12-13 15:32:28 -07:00
|
|
|
commands:
|
2023-05-01 13:09:21 -06:00
|
|
|
- apk add --no-cache cargo python3 make g++
|
2022-12-13 15:32:28 -07:00
|
|
|
- cp .config/ci.yml .config/default.yml
|
2023-01-12 21:54:33 -07:00
|
|
|
- corepack enable
|
|
|
|
- corepack prepare pnpm@latest --activate
|
2023-07-24 01:57:15 -06:00
|
|
|
- yarn
|
|
|
|
- yarn build
|
|
|
|
- yarn migrate
|
2022-12-13 15:32:28 -07:00
|
|
|
|
|
|
|
services:
|
|
|
|
database:
|
2023-01-11 11:42:04 -07:00
|
|
|
image: postgres:15
|
2022-12-13 15:32:28 -07:00
|
|
|
environment:
|
|
|
|
- POSTGRES_PASSWORD=test
|
2022-12-13 16:11:09 -07:00
|
|
|
redis:
|
|
|
|
image: redis
|
2022-12-13 15:32:28 -07:00
|
|
|
|
|
|
|
branches:
|
2023-04-02 03:17:54 -06:00
|
|
|
include: [ main, beta, develop, feature/* ]
|