4e0799f9d9
Agent-Logs-Url: https://github.com/HorizonStackSoftware/optima/sessions/8b3e4db9-a1bf-44c4-98fc-3304890cb3f4 Co-authored-by: HoloPanio <30759238+HoloPanio@users.noreply.github.com>
30 lines
545 B
YAML
30 lines
545 B
YAML
name: UI - Tests
|
|
|
|
on:
|
|
push:
|
|
branches: ["**"]
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ui
|
|
steps:
|
|
- name: Checkout source code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Bun
|
|
uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: "1.3.11"
|
|
|
|
- name: Install dependencies
|
|
run: bun install
|
|
|
|
- name: Run unit tests
|
|
run: bun run test:unit -- --run
|
|
env:
|
|
PUBLIC_API_URL: "https://api.example.com"
|