open-webui / .github /workflows /lint-frontend.disabled
github-actions[bot]
GitHub deploy: ae0c6c6c16ac02732fda24c616dd98aafc529e97
8b50706
raw
history blame contribute delete
No virus
488 Bytes
name: Bun CI
on:
push:
branches: ['main']
pull_request:
jobs:
build:
name: 'Lint Frontend'
env:
PUBLIC_API_BASE_URL: ''
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Bun
uses: oven-sh/setup-bun@v1
- run: bun --version
- name: Install frontend dependencies
run: bun install --frozen-lockfile
- run: bun run lint:frontend
- run: bun run lint:types
if: success() || failure()