mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 00:32:05 +00:00
58 lines
1.1 KiB
YAML
58 lines
1.1 KiB
YAML
name: Frontend Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- dev
|
|
|
|
jobs:
|
|
build:
|
|
name: 'Format & Build Frontend'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '20' # Or specify any other version you want to use
|
|
|
|
- name: Install Dependencies
|
|
run: npm install
|
|
|
|
- name: Format Frontend
|
|
run: npm run format
|
|
|
|
- name: Run i18next
|
|
run: npm run i18n:parse
|
|
|
|
- name: Check for Changes After Format
|
|
run: git diff --exit-code
|
|
|
|
- name: Build Frontend
|
|
run: npm run build
|
|
|
|
test-frontend:
|
|
name: 'Frontend Unit Tests'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
|
|
- name: Run vitest
|
|
run: npm run test:frontend
|