Skip to content

Update ci-workflow.yml #2052

Update ci-workflow.yml

Update ci-workflow.yml #2052

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 wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.23_amd64.deb
- name: Lint
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
env:
OPENAI_API_KEY: "${{ secrets.OPENAI_API_KEY }}"
MONGOMS_DEBUG: "1"