Merge branch 'open-webui:main' into main #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
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 |