open-webui/.github/workflows/format-build-frontend.yaml

40 lines
757 B
YAML
Raw Normal View History

2024-03-31 10:51:13 +02:00
name: Frontend Build
on:
push:
2024-03-31 10:51:13 +02:00
branches:
- main
- dev
pull_request:
2024-03-31 10:51:13 +02:00
branches:
- main
- dev
jobs:
build:
name: 'Format & Build Frontend'
runs-on: ubuntu-latest
steps:
2024-03-31 10:51:13 +02:00
- 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
2024-03-31 10:51:13 +02:00
- name: Check for Changes After Format
run: git diff --exit-code
2024-03-31 10:51:13 +02:00
- name: Build Frontend
run: npm run build