mirror of
https://github.com/zebrajr/ollama-webui.git
synced 2025-12-05 12:20:26 +01:00
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 5. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
66 lines
1.2 KiB
YAML
66 lines
1.2 KiB
YAML
name: Frontend Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
paths-ignore:
|
|
- 'backend/**'
|
|
- 'pyproject.toml'
|
|
- 'uv.lock'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- dev
|
|
paths-ignore:
|
|
- 'backend/**'
|
|
- 'pyproject.toml'
|
|
- 'uv.lock'
|
|
|
|
jobs:
|
|
build:
|
|
name: 'Format & Build Frontend'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v5
|
|
with:
|
|
node-version: '22'
|
|
|
|
- name: Install Dependencies
|
|
run: npm install --force
|
|
|
|
- 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@v5
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v5
|
|
with:
|
|
node-version: '22'
|
|
|
|
- name: Install Dependencies
|
|
run: npm ci --force
|
|
|
|
- name: Run vitest
|
|
run: npm run test:frontend
|