Skip to content

Implement subset of Eventpop public API as used in Creatorsgarten website #17

Implement subset of Eventpop public API as used in Creatorsgarten website

Implement subset of Eventpop public API as used in Creatorsgarten website #17

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run src/index.ts & bunx wait-on http-get://127.0.0.1:46982/swagger/json
- run: bun run generate:types
- run: bun test
env:
REDIS_URL: redis://localhost:6379