1
0
Fork 1
mirror of https://example.com synced 2024-11-23 21:26:40 +09:00
firefish/.woodpecker/commit.yml

23 lines
487 B
YAML
Raw Normal View History

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