Skip to content

Merge branch 'andrew/admin-fixes' of https://github.com/cornell-dti/c… #1726

Merge branch 'andrew/admin-fixes' of https://github.com/cornell-dti/c…

Merge branch 'andrew/admin-fixes' of https://github.com/cornell-dti/c… #1726

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: 16
- 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