1
0
Fork 1
mirror of https://example.com synced 2024-11-23 07:56:39 +09:00
firefish/.woodpecker/commit.yml

23 lines
487 B
YAML
Raw Normal View History

2023-07-20 04:17:05 +09:00
pipeline:
testCommit:
image: node:alpine
commands:
- apk add --no-cache cargo python3 make g++
- cp .config/ci.yml .config/default.yml
- corepack enable
- corepack prepare pnpm@latest --activate
- pnpm i --frozen-lockfile
- pnpm run build
- pnpm run migrate
services:
database:
image: postgres:15
environment:
- POSTGRES_PASSWORD=test
redis:
image: redis
branches:
include: [ main, beta, develop, feature/* ]