bot-api/.gitea/workflows/test.yaml

15 lines
342 B
YAML

name: Unit Tests
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [pull_request]
jobs:
unit-test:
container:
image: oven/bun:1
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Bun install
run: bun install
- name: Run the test
run: bun test