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

15 lines
342 B
YAML
Raw Normal View History

2023-12-29 15:08:09 +00:00
name: Unit Tests
2023-12-25 13:36:13 +00:00
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
2023-12-25 13:40:10 +00:00
on: [pull_request]
2023-12-25 13:36:13 +00:00
jobs:
2023-12-29 15:08:09 +00:00
unit-test:
2023-12-29 08:44:40 +00:00
container:
image: oven/bun:1
2023-12-25 13:36:13 +00:00
steps:
- name: Check out repository code
uses: actions/checkout@v3
2023-12-29 15:08:09 +00:00
- name: Bun install
run: bun install
- name: Run the test
run: bun test