Skip to content

add functions and routes for ai: including new function for getting r… #1720

add functions and routes for ai: including new function for getting r…

add functions and routes for ai: including new function for getting r… #1720

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install
run: yarn
- name: Run Linter
run: yarn lint
- name: Build Server
run: yarn workspace server build
- name: Build Website Bundle
# temporarily disable CI flag to let warning not to fail the build
run: CI=false yarn workspace client build
- name: Test
run: yarn workspace server test