Skip to content

chore: asset bundle compression (#173) #745

chore: asset bundle compression (#173)

chore: asset bundle compression (#173) #745

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