trepa/.woodpecker/.test.yml

30 lines
480 B
YAML
Raw Permalink Normal View History

2024-12-30 20:48:29 +01:00
when:
event: [push]
steps:
test:
image: oven/bun:${BUN_VERSION}-slim
commands:
- sleep 15
- bun install
- bun run test
environment:
2024-12-30 20:51:02 +01:00
DB_HOST: pg
DB_PORT: 5432
DB_USER: dev
DB_PASSWORD: dev
DB_NAME: trepa
2024-12-30 20:48:29 +01:00
services:
- name: pg
image: postgres:16-alpine
environment:
2024-12-30 20:52:00 +01:00
POSTGRES_USER: dev
POSTGRES_PASSWORD: dev
POSTGRES_DB: trepa
2024-12-30 20:48:29 +01:00
matrix:
BUN_VERSION:
- 1.1.42
- 1.1.41
- 1.1.40