Add worker /api/chat as primary AI backend with Pollinations fallback #1500
This file contains hidden or 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: Lighthouse CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lighthouse: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '18' | |
| - name: Install Lighthouse CI | |
| run: | | |
| npm install -g @lhci/cli@0.12.x | |
| - name: Run Lighthouse CI | |
| run: | | |
| lhci autorun --collect.staticDistDir=. --collect.url=http://localhost:8080/index.html --collect.url=http://localhost:8080/blog.html --collect.url=http://localhost:8080/git-tracker.html --upload.target=temporary-public-storage |