Skip to content

edit github actions #1477

edit github actions

edit github actions #1477

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
ref: ${{ github.ref }}
- 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