mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-25 12:48:53 +01:00
* feat: add api for config * feat: add data service to client * feat: update client pages with values from config endpoint * test: update tests * Update configurations and documentation to remove VITE_SHOW_GOOGLE_LOGIN_OPTION and change VITE_APP_TITLE to APP_TITLE * include APP_TITLE with startup config * Add test for new route * update backend-review pipeline * comment out test until we can figure out testing routes in CI * update: .env.example --------- Co-authored-by: fuegovic <32828263+fuegovic@users.noreply.github.com>
39 lines
918 B
YAML
39 lines
918 B
YAML
name: Backend Unit Tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
- release/*
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- dev
|
|
- release/*
|
|
jobs:
|
|
tests_Backend:
|
|
name: Run Backend unit tests
|
|
timeout-minutes: 60
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
MONGO_URI: ${{ secrets.MONGO_URI }}
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
JWT_SECRET: ${{ secrets.JWT_SECRET }}
|
|
CREDS_KEY: ${{ secrets.CREDS_KEY }}
|
|
CREDS_IV: ${{ secrets.CREDS_IV }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js 19.x
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 19.x
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
# - name: Install Linux X64 Sharp
|
|
# run: npm install --platform=linux --arch=x64 --verbose sharp
|
|
|
|
- name: Run unit tests
|
|
run: cd api && npm run test:ci
|