Skip to content

chore: add Made for UDS badge verification task and workflow #987

chore: add Made for UDS badge verification task and workflow

chore: add Made for UDS badge verification task and workflow #987

Workflow file for this run

name: ui-test
on:
pull_request:
paths:
# Ignore all workflows except this one
- ".github/workflows/ui-test.yaml"
# LFAI-UI things (no Python)
- "src/leapfrogai_ui/**"
- "packages/ui/**"
# Declare default permissions as read only.
permissions: read-all
concurrency:
group: ui-test-${{ github.ref }}
cancel-in-progress: true
jobs:
ui-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version-file: 'src/leapfrogai_ui/package.json'
- name: Install Dependencies
run: npm --prefix src/leapfrogai_ui ci
- name: Run Unit Tests
run: npm --prefix src/leapfrogai_ui run test:unit