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

15 lines
376 B
YAML

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