0b31ccacc1
- Fix the histogram calculation to use server provided generation tokens/second. - Move histogram to Activities page where it can exist with the rest of the token metrics Fixes #681
34 lines
589 B
YAML
34 lines
589 B
YAML
name: UI Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
paths:
|
|
- 'ui-svelte/**'
|
|
- '.github/workflows/ui-tests.yml'
|
|
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
paths:
|
|
- 'ui-svelte/**'
|
|
- '.github/workflows/ui-tests.yml'
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
run-tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '24'
|
|
cache: 'npm'
|
|
cache-dependency-path: ui-svelte/package-lock.json
|
|
|
|
- name: Run UI tests
|
|
run: make test-ui
|