Skip to content

Merge branch 'main' into fix/increase-disable-limits-for-LODs #750

Merge branch 'main' into fix/increase-disable-limits-for-LODs

Merge branch 'main' into fix/increase-disable-limits-for-LODs #750

Workflow file for this run

name: Consumer Server
on:
push:
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
lfs: true
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: yarn
cache-dependency-path: consumer-server/yarn.lock
- name: install
run: yarn --frozen-lockfile
working-directory: consumer-server
- name: lint
run: yarn lint:check
working-directory: consumer-server
- name: build
run: yarn build
working-directory: consumer-server
- name: test
run: yarn test
working-directory: consumer-server