21 lines
714 B
YAML
21 lines
714 B
YAML
name: Unit Tests with docker compose
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
unit-test:
|
|
container:
|
|
image: docker:dind
|
|
steps:
|
|
- name: ps
|
|
run: docker-init -- dockerd --host=unix:///var/run/docker.sock &
|
|
- name: Installing necessary packages
|
|
run: apk add nodejs git curl bash
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: Install bun runtime
|
|
run: curl -fsSL https://bun.sh/install | bash
|
|
- name: Install project dependencies
|
|
run: ~/.bun/bin/bun install
|
|
- name: Run docker-compose
|
|
run: docker compose down -v && docker compose run bot-api bun test |