ci: add testing
Some checks failed
Build and Push Docker Image / tests (push) Failing after 42s
Build and Push Docker Image / build (push) Has been skipped

This commit is contained in:
Lars Hampe 2024-10-01 13:46:51 +02:00
parent 0d0e241e68
commit 8f53f4c675
3 changed files with 51 additions and 0 deletions

View File

@ -6,7 +6,10 @@ on:
- main
jobs:
tests:
uses: ./.gitea/workflows/test.yaml
build:
needs: [tests]
runs-on: ubuntu-latest
steps:
- name: Checkout

View File

@ -0,0 +1,44 @@
name: Test
run-name: ${{ gitea.actor }}
on: [workflow_call]
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:17-alpine
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.1.29
- name: Install dependencies
run: bun install
- name: Push Database
run: bun run db:push
env:
POSTGRES_URL: postgres://postgres:postgres@localhost:5432/postgres
- name: Test API
run: bun test:api

View File

@ -7,6 +7,10 @@
"check:packages": "bunx biome check --write --config-path ./biome.json ./packages",
"dev": "bun --filter '*' dev",
"build": "bun --filter '*' build",
"db:generate": "bun --filter '@boring.tools/database' db:generate",
"db:migrate": "bun --filter '@boring.tools/database' db:migrate",
"db:push": "bun --filter '@boring.tools/database' db:push",
"test:api": "bun --filter '@boring.tools/api' test",
"docker:website:build": "docker build -t git.hashdot.co/boring.tools/boring.tools/website -f ci/docker/website/Dockerfile .",
"docker:website:push": "docker push git.hashdot.co/boring.tools/boring.tools/website",
"docker:website": "bun docker:website:build && bun docker:website:push",