CoolFace
Apppublic

JdrCydsek/open-webui

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
lint-frontend.disabled21 linesDownload Raw Back to workflows
1name: Bun CI2on:3  push:4    branches: ['main']5  pull_request:6jobs:7  build:8    name: 'Lint Frontend'9    env:10      PUBLIC_API_BASE_URL: ''11    runs-on: ubuntu-latest12    steps:13      - uses: actions/checkout@v414      - name: Use Bun15        uses: oven-sh/setup-bun@v116      - run: bun --version17      - name: Install frontend dependencies18        run: bun install --frozen-lockfile19      - run: bun run lint:frontend20      - run: bun run lint:types21        if: success() || failure()